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.
我有一个对象集合。问题是将对象集合添加到 Backbone.Push 中的另一个集合并添加 Bacbone.Collection 的方法不起作用。这是我的集合,需要添加到另一个集合
假设它们是主干集合(它们在您的控制台窗口中看起来不像)
尝试:collectionA.add(collectionB.models)
collectionA.add(collectionB.models)
如果您尝试将对象数组添加到集合中,请尝试以下操作:
_.each(kids.result, function(kid){ collectionA.add(new Backbone.Model(kid)); });