我目前正在嘗試查找所有在'foo'鍵中具有'bar'值的文檔。使用mongodb和nodejs。查找()方法MongoDB和Nodejs
當我嘗試運行此操作時,得到: 「TypeError:無法讀取未定義的」錯誤返回「屬性'find'。
如果我嘗試使用findOne(),它會只返回,具有對鍵「foo」的值「欄中的」文件頭文件,但有3
module.exports = function(app, db) {
app.get('/foo', (req, res)=>{
db.collection('barCollection').find({foo: {$all: ['bar']}}
,(err, item)=>{
if (err) {
res.send({'error':'An error has occurred'});
} else {
res.send(item);
}
});
});
};
感謝
推薦Mongoose的好處。這是Mongo的最佳途徑,imo – Paul
讓它工作! – rudster
很高興:) –