我有一个侦听商店的组合框
{
id: 'filterOrderStatus',
xtype: 'combobox',
fieldLabel: Translation.MailboxListStatus,
store: 'DocumentStatuses',
displayField: 'name',
valueField: 'id',
itemId: 'filterOrderStatus',
// flex: 1,
height: 23,
labelWidth: 45,
width: 130,
cls: 'filterInputField',
listConfig: {
cls: 'comboboxlist-sizefit'
}
商店是一个简单的ajax商店,它可以回收价值。我需要将他获得的值转换成另一种语言,我怎么能这样做?这是商店:
Ext.define('xxx.xx.xxx', {
extend: 'Ext.data.Store',
requires: 'xxx.xxx.xx',
model: 'xxx.xxx.xxxx',
autoLoad: true,
proxy: {
type: 'ajax',
api: {
read: ConfigurationData.url + 'xxx.php?xx=xx&xx=xxx'
},
reader: {
type: 'json',
root: 'results',
successProperty: 'success'
}
}
});
答案 0 :(得分:1)
在您的模型中,您可以直接返回转换后的记录,如图所示
{
name : 'name',
convert : function( value, record ) {
//Your logic to convert the old name(value) into new name.
return name;
}
type: 'string'
},