当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。