1

以下代码是我的 extjs 商店。我想从这家商店中排除一些特定的价值。

例如,“选项 1”、“选项 2”之类的值将从商店中排除,或者当我检索此商店并显示在输入下拉字段中时。

我该怎么做?

谢谢你。

 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'}]
});
4

1 回答 1

1

您可以使用过滤器http://docs.sencha.com/extjs/4.2.1/#!/api/Ext.data.Store-method-filter

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() {
           this.filter(function(rec){
               var val = rec.get('name');
               return val != 'option1' && val != 'option2';
           });
       }
    }
});
于 2013-06-03T17:14:55.590 回答