ExtJS中store.findExact
Posted wuln
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ExtJS中store.findExact相关的知识,希望对你有一定的参考价值。
1 var ds = myGrid.apf_ds; 2 var store = myGrid.getStore(); 3 4 forEach(data, function (item) { 5 if (store.findExact("code", item["code"]) < 0) { 6 7 var record = ds.addRecord(); 8 record.set("code", item.code); 9 ... 10 } 11 } 12 });
以上是关于ExtJS中store.findExact的主要内容,如果未能解决你的问题,请参考以下文章