このストアの重複する値を削除したいと思います。
場合によっては、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
});