Backbone.js 集合的 findWhere 方法與 where 方法相同,但它隻返回集合中與傳遞的屬性匹配的第一個模型。
用法:
collection.findWhere(attributes)
參數說明:
attribute:它指定定義模型的屬性。
我們舉個例子來部署 findWhere 方法。
看這個例子:
<!DOCTYPE html>
<head>
<title>findWhere Collection Example</title>
<script src="https://code.jquery.com/jquery-2.1.3.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
//'Players' is a model name and contain default values
var Players = Backbone.Model.extend({
defaults:{
id:"",
name:"",
country:""
}
});
//The 'PlayersCollection' is an instance of the collection
var PlayersCollection = Backbone.Collection.extend({
model:Players //The model 'Players' is specified by overriding the "model" property of the collection
});
$(function(){
var mycollection = new PlayersCollection();
// The set() method to sets the values for 'id', 'name' and 'country' attributes, specified in the model "Players"
mycollection.set([{id:1, name:'Sachin', country:'India'},
{id:2, name:'Jaysurya', country:'Sri Lanka'},
{id:3, name:'Maxwell', country:'Australia'},
{id:4, name:'Steve', country:'Australia'}
]);
// The findWhere() method finds the model containing with the id '1'
var res=mycollection.findWhere({id:1});
//Display the result in the JSON format
document.write("The values of matched attribute are:",JSON.stringify(res));
});
</script>
</body>
</html>
輸出:
將上述代碼保存在 findwhere.html 文件中,然後在新瀏覽器中打開該文件。

相關用法
- Backbone.js collection.fetch()用法及代碼示例
- Backbone.js collection.slice()用法及代碼示例
- Backbone.js collection.parse()用法及代碼示例
- Backbone.js collection.clone()用法及代碼示例
- Backbone.js collection.url()用法及代碼示例
- Backbone.js collection.length()用法及代碼示例
- Backbone.js collection.push()用法及代碼示例
- Backbone.js collection.sort()用法及代碼示例
- Backbone.js collection.set()用法及代碼示例
- Backbone.js collection.add()用法及代碼示例
- Backbone.js collection.sync()用法及代碼示例
- Backbone.js collection.where()用法及代碼示例
- Backbone.js collection.pop()用法及代碼示例
- Backbone.js collection.create()用法及代碼示例
- Backbone.js collection.comparator()用法及代碼示例
- Backbone.js collection.unshift()用法及代碼示例
- Backbone.js collection.reset()用法及代碼示例
- Backbone.js collection.get()用法及代碼示例
- Backbone.js collection.shift()用法及代碼示例
- Backbone.js collection.pluck()用法及代碼示例
注:本文由純淨天空篩選整理自 Backbone.js collection.findWhere()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。