我想删除此商店中的重复值。
有时,url 返回一些重复值,我怎样才能删除重复值并只列出该值 1 次?
var input1store = new Ext.data.Store({
fields: [{name: 'name'}],
proxy:{
type: 'ajax',
url: 'www.requesturl.com?format=json&source1',
reader: {
type: 'json',
root: 'xml.result'
}
},
autoLoad:false,
sorters: [{property: 'name', direction: 'asc'}]
});
我根据您的建议编写的代码,但仍然无法正常工作。Input1store2 应仅包含唯一值。
var input1storeArray = [];
var input1store = new Ext.data.Store({
fields: [{name: 'name'}],
proxy:{
type: 'ajax',
url: 'www.requesturl.com?format=json&source1',
reader: {
type: 'json',
root: 'xml.result'
}
},
autoLoad:false,
sorters: [{property: 'name', direction: 'asc'}],
listeners: {
load: function(store){
input1storeArray = Ext.Array.unique(store.getRange());
}
}
});
var input1store2 = new Ext.data.SimpleStore({
field = ['name'],
data = input1storeArray
});