0

我想删除此商店中的重复值。

有时,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 
});
4

1 回答 1

0

我不认为有任何内置的。您需要在模型级别强制执行它 - 使该字段唯一并处理错误,或者加载商店,按该字段排序并检查比较最后一个和下一个的所有记录。

于 2013-06-03T19:18:04.380 回答