如何在一个 POST 调用中将我的整个商店数据发送到服务器?它可以是 json 格式。
谢谢。
更新:
这是我的商店代码:
Ext.define('App.store.consultorio.Receita', {
extend: 'Ext.data.Store',
model: 'App.model.consultorio.Receita',
autoLoad: false,
proxy: {
type: 'rest',
reader: {
type: 'json'
},
writer: {
type: 'json'
},
url: 'consultas/receita.json'
}
});