标签:style blog http color os io strong ar 2014
创建一个集合
var User=Backbone.Model.extend({}); var List=Backbone.Collection.extend({model:User});
为集合添加模型
1、new 时添加
var User=Backbone.Model.extend({}); var List=Backbone.Collection.extend({model:User}); var user1=new List({‘name‘:‘susan‘}); var user2=new List([{‘name‘:‘susan‘},{‘name‘:‘jack‘}]);
2、add()方法添加模型
var user3=new List(); user3.add({‘name‘:‘susan‘}); user3.add([{‘name‘:‘lucy‘},{‘name‘:‘lily‘}]);
remove方法 从集合中删除模型
1)根据cid删除
2)根据models[i]删除
标签:style blog http color os io strong ar 2014
原文地址:http://www.cnblogs.com/qianlegeqian/p/3930011.html