标签: collections indexing meteor
我需要替换Meteor.Collection中的元素,但想要替换它,因此它与旧的元素位于相同的位置。
对于我在observe中的文档中找到的内容,回调中有一个atIndex参数。
observe
atIndex
e.g。
cursor.observe({ addedAt: function(document, atIndex, before){ ... } ... })
这是否意味着我可以在特定的索引位置插入对象,如果是这样的话?
答案 0 :(得分:1)
如果您使用.update(),它将显示在同一位置。
或许我误解了你想要完成的事情?