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.
我在 Meteor 中有一个集合,它基本上是对象 id 的链表。我想从头到尾对物体进行分类。
根据 Meteor 的文档,您可以使用的排序说明符只是在一个键上升序和降序。有没有办法对链接列表进行排序或制作我自己的自定义排序说明符?
这是应用程序级别的问题。我认为 Meteor 甚至 Mongodb 不会很快原生支持这一点,我认为你可以获取 Collection,然后自己做(可能 Underscore.js 有帮助)。