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.
以下代码中表示的问题:http: //jsfiddle.net/W7Rq9/
我有一系列模型(照片)。每个模型(照片)都有自己的集合(标签),有时存储的数据tags会重复。当我获取我的集合时photos,重复tags的被删除。
tags
photos
我认为在示例http://jsfiddle.net/W7Rq9/中会更清楚
Backbone 不允许具有相同 id 的两个对象在同一个集合中。
您可以给它们一个唯一的 id 和/或更改用作对象 id 的属性,但是您设置为对象 id 的任何属性对于给定集合中的所有对象都必须是唯一的。