0

我有一个表单,我用它来修改 JsonStore 的记录。这是 JsonStore 的配置:

reader: new Ext.data.JsonReader({
fields: [
    'item_ref',
    'item_type_code',
    {
        name:'order_by',                
        type: 'int'            
    }]
}),[ ... ]  

我正在尝试修改 order_by 字段(numberfield),但如果将其留空,它会发送一个字符串“”......我会在 order_by 字段为空的情况下设置一个 json,例如:

{
    item_ref: 16
    item_type_code: 1
    order_by:  
}

但我得到了这个:

{
    item_ref: 16
    item_type_code: 1
    order_by:  ""
}
4

0 回答 0