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


Backbone.js collection.findWhere()用法及代码示例


Backbone.js 集合的 findWhere 方法与 where 方法相同,但它只返回集合中与传递的属性匹配的第一个模型。

用法:

collection.findWhere(attributes)

参数说明:

attribute:它指定定义模型的属性。

我们举个例子来部署 findWhere 方法。

看这个例子:

<!DOCTYPE html>
   <head>
      <title>findWhere 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">
         //'Players' is a model name and contain  default values
         var Players = Backbone.Model.extend({
            defaults:{
               id:"",
               name:"",
               country:""
            }
         });

         //The 'PlayersCollection' is an instance of the collection
         var PlayersCollection = Backbone.Collection.extend({
            model:Players   //The model 'Players' is specified by overriding the "model" property of the collection
         });
         $(function(){
            var mycollection = new PlayersCollection();

            // The set() method to sets the values for 'id', 'name' and 'country' attributes, specified in the model "Players"
             mycollection.set([{id:1, name:'Sachin', country:'India'},
             {id:2, name:'Jaysurya', country:'Sri Lanka'},
           {id:3, name:'Maxwell', country:'Australia'},
           {id:4, name:'Steve', country:'Australia'}
            ]);
            // The findWhere() method finds the model containing with the id '1'
            var res=mycollection.findWhere({id:1});

            //Display the result in the JSON format
            document.write("The values of matched attribute are:",JSON.stringify(res));
         });
      </script>
   </body>
</html>

输出:

将上述代码保存在 findwhere.html 文件中,然后在新浏览器中打开该文件。

BackboneJS Findwhere Collection



相关用法


注:本文由纯净天空筛选整理自 Backbone.js collection.findWhere()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。