當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Backbone.js collection.clone()用法及代碼示例

Backbone.js 集合克隆方法返回一個具有相同模型列表的集合的新實例。

用法:

collection.clone()

讓我們舉一個例子來演示克隆方法。

看這個例子:

<!DOCTYPE html>
   <head>
      <title> Clone 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">
         //'Person' is a model name
         var Person  = Backbone.Model.extend();

         //The model instance 'person' contains 'name' attribute
         var person=new Person({
            name:'Chris Martin'
         });
         var MyCollection = Backbone.Collection.extend({
            model:Person   //model is override by specifying the "model" property of collection class
         });
         var myCollection = new MyCollection();

         // The clone() method uses get method to retrieve the 'name' attribute
         var details = myCollection.clone(person.get('name'));

         //Use a variable 'details' to assign the value for 'name' as 'John Davison'
         details.name="John Davison";
         document.write("The new instance of collection is:",JSON.stringify(details.name));
      </script>
   </body>
</html>

輸出:

將上述代碼保存在 clone.html 文件中,然後在新瀏覽器中打開此文件。

BackboneJS Clone Collection



相關用法


注:本文由純淨天空篩選整理自 Backbone.js collection.clone()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。