gpt4 book ai didi

node.js - nodejs在mongodb中获取查找结果

转载 作者:可可西里 更新时间:2023-11-01 09:56:22 24 4
gpt4 key购买 nike

我正在尝试获取查询结果,但我在所有变量中都得到了相同的信息:db、collection 和 res:

var mongodb = require("mongodb");
var mongoserver = new mongodb.Server("localhost", 27017);
var instance = new mongodb.Db("test", mongoserver);

instance.open(function(err, db)
{
console.log('db:');
console.log(db);
db.collection('kurtsoa', function(err, collection)
{
console.log('collection:');
console.log(collection);
collection.find({}, function(err, res)
{
console.log('res:');
console.log(res);
});
});
});

我怎样才能得到“查找”的结果?

最佳答案

.find()将返回 Cursor供您使用的对象。如果您感兴趣的只是获取数组中的所有结果,您可以执行以下操作:

collection.find().toArray(function(err, docs) {
console.log(docs);
});

但您也可以迭代游标:

collection.find().each(function(err, doc) {
//called once for each doc returned
});

关于node.js - nodejs在mongodb中获取查找结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14522178/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com