繁体   English   中英

在nodejs collection.find()中没有从Mongodb集合中获取值,它什么也不返回

[英]In nodejs collection.find() is not fetching values from Mongodb collection.It returning nothing

 app.get('/render', function(req, res) { MongoClient.connect(dburl, function(err, db) { if (err) throw err; var collection = db.collection('shopping_list'); collection.find().toArray(function(err, result) { res.send({result :result}); }); db.close(); }); }); 
在nodejs集合中,find()不会从Mongodb集合中获取值。不返回任何内容在nodejs集合中.find()不会从Mongodb集合中获取值。

exports.index = function(req, res) {
var queryObj = {};
UserModel.find(queryObj)
.exec(function(err, users) {
    if (!users) {
        console.log("users not found");
    }
    if (!err) {
        console.log("number of users",users.length);
    } else {
        console.log("err",err);
    }
});

};

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM