我有这家店:
Ext.define('strMtoOrganismos', {
extend: 'Ext.data.Store',
model: 'mdlMtoOrganismos',
autoLoad: false,
pageSize: 20,
proxy: {
type: 'ajax',
api: {
read: 'some php url',
update: 'some php url'
},
reader: {
type: 'json',
root: 'data',
totalProperty: 'total',
successProperty: 'success'
},
writer: {
type: 'json',
root: 'data',
encode: true,
writeAllFields: false,
}
}
});
在我的控制器中,我有一个同步商店的按钮:
onPulsarGuardar:function(){
Ext.getStore('strMtoOrganismos').sync();
}
在我的php文件中,打印$ _POST [data]我收到了例如: {" codigo_erp_cliente":" 243"" ID":2}
如何将此字符串转换为如下数组:
[codigo_erp_cliente] => 243
[ID] =→2
或商店作家的另一种配置?