我需要替换 Meteor.Collection 中的元素,但想要替换它,所以它出现在与旧元素相同的位置。
为此,我在文档中发现,回调observe
中有一个atIndex
参数。
例如
cursor.observe({
addedAt: function(document, atIndex, before){
...
}
...
})
这是否意味着我可以在特定的索引位置插入对象,如果可以的话怎么办?
我需要替换 Meteor.Collection 中的元素,但想要替换它,所以它出现在与旧元素相同的位置。
为此,我在文档中发现,回调observe
中有一个atIndex
参数。
例如
cursor.observe({
addedAt: function(document, atIndex, before){
...
}
...
})
这是否意味着我可以在特定的索引位置插入对象,如果可以的话怎么办?