Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我注意到(我认为)share.js 在我的数据库中创建了一个名为 m 的子文档,其中包含 mtime 和 ctime。是否有$orderby基于这些属性的 derby.js 方法?
$orderby
谢谢
我不确定,但你可以尝试这样的事情:
model.query('collectionName', {$orderby: {_m: {mtime: 1}}});
但无论如何 _m, _v, _type 字段将在您从模型中获取文档之前被删除。