0

我有一个听商店的组合框

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

1 回答 1

1

在您的模型中,您可以直接返回转换后的记录,如图所示

{
  name : 'name',
  convert : function( value, record ) {
               //Your logic to convert the old name(value) into new name.
               return name;
   }   
   type: 'string'
},
于 2013-09-26T13:59:39.810 回答