0

我有一个商店,它通过代理服务器获取它的价值。但我想硬编码一个国家(空国家),应该在 sencha 代码中附加到商店周围

我尝试了一个天真的

data: [
    {
        id: '999',
        countryCode: 'NullCountry',
        countryName: 'Null (+nothing)',
        countryPhoneCode: null
    }
]

但它不起作用(这只是一种尝试)。我怎样才能做到这一点?

Ext.define('Sencha.store.CountryStore', {
    extend: 'Ext.data.Store',

    config: {
        id : 'CountryStore',
        model:'Sencha.model.user.Country',

        proxy: {
            type: 'rest',
            url : '/countries',
            headers: {
                'Content-Type': 'application/json',
                'Accept' : 'application/json'
            },
            reader: {
                type: 'json',
                rootProperty: 'countries'
            }
        },
        autoLoad: true,
        data: [
            {
                id: '999',
                countryCode: 'NullCountry',
                countryName: 'Null (+nothing)',
                countryPhoneCode: null
            }
        ]
    }
});
4

1 回答 1

2

您可以收听商店加载事件,然后添加新记录:

Ext.define('Sencha.store.CountryStore', {
    extend: 'Ext.data.Store',

    config: {
        id : 'CountryStore',
        model:'Sencha.model.user.Country',

        proxy: {
            type: 'rest',
            url : '/countries',
            headers: {
                'Content-Type': 'application/json',
                'Accept' : 'application/json'
            },
            reader: {
                type: 'json',
                rootProperty: 'countries'
            }
        },
        autoLoad: true,

        listeners: {
            load: function(me) {
                me.add({
                    id: '999',
                    countryCode: 'NullCountry',
                    countryName: 'Null (+nothing)',
                    countryPhoneCode: null
                });
            }
        }
    }
});
于 2013-01-27T19:42:44.817 回答