sencha store 更新数据

估计没几个人知道这玩意咋整,反正百度上搜不到
在google看英文贴知道的,记录下!

var index = store.find('name','Hello World');
var record = store.getAt(index);
record.set('value', 'new value' );
record.dirty = true;
store.sync();

你可能感兴趣的:(sencha store 更新数据)