我正在尝试根据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对它们进行排序