标签: backbone.js
我有一个带有多个模型的骨干js集合:
Model 1: tag: 1 id : 2 name: test Model 2: tag: 3 id: 3 name: test3
如何通过标记属性搜索特定模型的集合? 就像我想找到tag = 2的模型一样......我该怎么做?
答案 0 :(得分:1)
使用findWhere:
findWhere
仅返回集合中与传递的属性匹配的第一个模型。
collection.findWhere({tag: 2})