- BackboneJS 教程
- BackboneJS - 主頁
- BackboneJS - 概覽
- BackboneJS - 環境設定
- BackboneJS - 應用程式
- BackboneJS - 事件
- BackboneJS - 模型
- BackboneJS - 集合
- BackboneJS - 路由
- BackboneJS - 歷史記錄
- BackboneJS - 同步
- BackboneJS - 檢視
- BackboneJS - 實用工具
- BackboneJS 有用資源
- BackboneJS - 快速指南
- BackboneJS - 資源
- BackboneJS - 討論
BackboneJS - 集合獲取
說明
它用於使用 id 或 cid 從集合中檢索模型。
語法
collection.get(id)
引數
id − 用於從集合中獲取模型。
示例
<!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">
var MyCollection = new Backbone.Collection();
//The on() method binds callback function to 'MyCollection' instance and invokes whenever
//an event triggers
MyCollection.on("change:title", function(model) {
//When event triggers, it retrieves the title from the collection
document.write("Hello... " + model.get('title'));
});
MyCollection.add({id: 2}); //adds id value as 2 in the collection
//The 'myvalues' object gets the 'MyCollection' with id = 2
var myvalues = MyCollection.get(2);
//Sets the value for the title
myvalues.set('title', 'Welcome to TutorialsPoint');
</script>
</body>
</html>
輸出
讓我們執行以下步驟,瞭解上面的程式碼如何工作 −
將上面的程式碼儲存到 get.htm 檔案中。
在瀏覽器中開啟此 HTML 檔案。
backbonejs_collection.htm
廣告