我試圖在將其存儲到商店之前刪除重複值。我只想在商店1次存儲相同的值。但似乎下面的Ext.Array.unique行不起作用。任何人都可以請幫我解決這個問題。 謝謝extjs在將其存儲到商店之前刪除重複值
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(rec){
uniqueArray = Ext.Array.unique(rec.getRange());
}
}
});
什麼版本的Ext是這樣的? 3.4? – rixo
這是4.06版本 – shiro
你到底想用這段代碼實現什麼功能?您加載商店,然後將某些內容分配給本地變量。結果應該是什麼? – sha