无法使用退出代码运行新应用程序:1

时间:2017-06-09 01:29:18

标签: meteor

请将我的以下答案转发给node.js: Mongodb db.collection.find() not working while collection.insert works

你确实使用过:collection.find({name:req.body.name})。limit(1).size() 1你也可以使用游标变量来限制。或者与mongo shell不同的语法。 2或在javascript文件中使用cursor var(见下文):

----------------------------------------------- -

1 (蒙戈 - 壳)GT; db.collection.find({名称:req.body.name},{$限制:1,$跳过:10})                  或者:

  

db.collection.find({名称:req.body.name}, “$极限”:1, “$跳过”:10})

或者更好地在js文件中使用cursor var:

var query = {name:req.body.name}
var cursor=db.collection.find(query);
cursor.sort({"name":1});`enter code here`
cursor.limit(10);
cursor.skip(100);

0 个答案:

没有答案