我尝试获取具有最新日期的文档,但出现此错误:TypeError: 'undefined' is not a function

我的代码:

console.log(Games.find({authorId: authorId}).sort( { releaseDate: -1 } ).limit(1)); // error
console.log(Games.find({authorId: authorId}).fetch()); // expected outpout


(值releaseDate存在并且为ISODate格式。)
任何帮助将不胜感激。

编辑:我正在使用流星0.9.2.1。

最佳答案

得到它了!

Games.find({authorId: authorId}, { sort: { 'releaseDate' : -1 } , limit:1});

关于javascript - TypeError:使用mongoDB排序运算符时'undefined'不是函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25915553/

10-09 20:19