GWT EXT的STORE的add方法
store的add方法要求加入的record的id不相同,否则不会被加入。
见ext-all-debug.js的Ext.util.MixedCollection,其add方法为:
add:function(key,o){
if(arguments.length==1){
o=arguments[0];
key=this.getKey(o);
}
if(typeofkey=="undefined"||key===null){
this.length++;
this.items.push(o);
this.keys.push(null);
}else{
varold=this.map[key];
if(old){
returnthis.replace(key,o);
}
this.length++;
this.items.push(o);
this.map[key]=o;
this.keys.push(key);
}
this.fireEvent("add",this.length-1,o,key);
returno;
},
getKey:function(o){
returno.id;
},
如果发现有相同的id,则就会被returnthis.replace(key,o);掉。
可以用Ext.generateId()方法随机生成新的id
相关推荐
InJavaWeTrust 2020-05-15
Chydar 2012-09-20
natejeams 2020-01-15
zcpHappy 2014-01-11
pythonclass 2019-11-07
JF0 2019-11-03
ElementW 2015-02-15
干货集合 2014-05-14
kaiya0 2012-06-13
cscscssjsp 2012-03-05
drinow 2019-07-12
coderMozart 2019-06-30
t0ckh 2012-11-11
中等偏下 2017-02-22
nicepainkiller 2016-07-26
xiaoren 2016-02-10
云帆大数据 2016-01-11