- BackboneJS 教程
- BackboneJS - 主頁
- BackboneJS - 概覽
- BackboneJS - 環境設定
- BackboneJS - 應用程式
- BackboneJS - 事件
- BackboneJS - 模型
- BackboneJS - 集合
- BackboneJS - 路由
- BackboneJS - 歷史
- BackboneJS - 同步
- BackboneJS - 檢視
- BackboneJS - 實用工具
- BackboneJS 實用資源
- BackboneJS - 快速指南
- BackboneJS - 資源
- BackboneJS - 討論
BackboneJS - Collection Where
說明
用於透過集合中匹配的屬性顯示模型。
語法
collection.where(attribute)
引數
attribute − 它表示已定義模型的屬性。
示例
<!DOCTYPE html>
<html>
<head>
<title>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">
//'Player' is a model name
Player = Backbone.Model.extend ({
name: ""
});
//The 'PlayersCollection' is an instance of the collection
PlayersCollection = Backbone.Collection.extend ({
model: Player //The model 'Player' is specified by overriding the "model" property of the collection
});
var player1 = new Player({ name: "Dravid" });
var player2 = new Player({ name: "Raina"});
var player3 = new Player({ name: "Jadeja"});
var mycollection = new PlayersCollection();
//The 'player1','player2' and 'player3' are 3 instances added to the collection by using 'mycollection' instance
mycollection.add(player1);
mycollection.add(player2);
mycollection.add(player3);
//The where() method returns the model, which contains the name with "Raina" in the collection
var myteam = mycollection.where({ name: 'Raina' });
document.write("Total numbers of items that matches given attribute are:",
+myteam.length);
</script>
</body>
</html>
輸出
讓我們執行以下步驟,瞭解以上程式碼如何工作的 −
將以上程式碼儲存在 where.htm 檔案中。
在瀏覽器中開啟此 HTML 檔案。
backbonejs_collection.htm
廣告