我的查询是这样的
var db = new Db('NodeZMQ', new Server('192.168.3.110', 27017, { auto_reconnect: true }));
db.collection('clsSession', function (err, collection)
{
collection.findOne({ "code": { "$in": ["eventCode"] }, "Venue.allowSales": true, "status": "O", "Venue.companyCode": "companyCode" }, function (err, document)
{
console.log(document);
});
});
它提供一份文件。实际上它有很多文件..因为我使用的是 findOne 它就是这样..如何获取所有匹配的文件?我正在使用 node.js 和 mongodb。我是 mongoDB 和 node.js 的新手。