我有一个商店,它通过代理服务器获取它的价值。但我想硬编码一个国家(空国家),应该在 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
}
]
}
});