如果我在商店中应用了不同的过滤器,我怎样才能得到它们并将它们保存在一个数组中?我想从商店中删除所有过滤器,获取一个项目(删除它),然后放回之前的所有过滤器。谢谢!
问问题
274 次
2 回答
0
编辑
// Get the filters using getFilters
var filters = store.getFilters();
// Clear the filters from store
store.clearFilter();
//Get the item from store
var item = store.findRecord('fieldName', 'value');
//Remove the item from store
if (item) store.remove(item);
// Again set the filters using setFilters
store.filter(filters);
于 2014-11-13T13:52:51.217 回答
0
如果我理解正确,你可以做
var filters = store.getFilters(); // Get the filters using getFilters
store.clearFilter(); // Clear the filters from store
var item = store.findRecord('fieldName', 'value'); //Get the item from store
if (item) store.remove(item); //Remove the item from store
store.setFilters(filters); // Again set the filters using setFilters
文档参考
只是文档中的参考可能会解决您的问题。
于 2013-08-07T15:22:19.860 回答