- BackboneJS 教程
- BackboneJS - 首頁
- BackboneJS - 概覽
- BackboneJS - 環境設定
- BackboneJS - 應用程式
- BackboneJS - 事件
- BackboneJS - 模型
- BackboneJS - 集合
- BackboneJS - 路由器
- BackboneJS - 歷史記錄
- BackboneJS - 同步
- BackboneJS - 檢視
- BackboneJS - 實用程式
- BackboneJS 有用資源
- BackboneJS - 快速指南
- BackboneJS - 資源
- BackboneJS - 討論
BackboneJS - 集合建立
說明
它在集合中建立新模型例項。
語法
collection.create(attributes,options)
引數
attributes − 它們表示已定義模型的屬性。
options − 它獲取 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">
//The model 'ModelDemo' uses the sync method to display the model state such as create, read, update etc
var ModelDemo = Backbone.Model.extend ({
sync : function (method, model, options) {
document.write(JSON.stringify(arguments));
}
});
//'CollectionDemo' is an instance of the collection
var CollectionDemo = Backbone.Collection.extend ({
model : ModelDemo //The model 'ModelDemo' is specified by overriding the 'model' property
});
//'ViewDemo' is the name of the view
var ViewDemo = Backbone.View.extend ({
//The instance of the collection 'collectiondemo' is created within the 'initialize()' function
initialize : function () {
var collectiondemo = new CollectionDemo();
collectiondemo.create ({
Name:"Sachin Tendulkar",
Country:"India"
});
}
});
new ViewDemo(); //The view instance 'ViewDemo' is created using the 'new' keyword.
</script>
</body>
</html>
輸出
讓我們執行以下步驟,看看上面的程式碼如何工作 -
將上述程式碼儲存在 create.htm 檔案中。
在瀏覽器中開啟此 HTML 檔案。
backbonejs_collection.htm
廣告