在mongodb(NodeJS)中查询后对子文档进行排序

时间:2017-02-17 22:14:03

标签: javascript node.js mongodb sorting

我正在尝试根据updated_date对文档进行排序。我正在使用以下查询

Collection.find({'_id':{$in:user['collectArray']}}).sort({ "updated_date": -1 }).toArray(function(err,collectionArray){...});

但是我收到错误.find(...).sort(...).toArray is not a function。所以这里的基本思想是我使用_id's获取所有子文档,然后根据updated_date对其进行排序。

我想在从数据库本身获取它时对它们进行排序,而不是创建一个集合,然后使用JS对它们进行排序

0 个答案:

没有答案