5

如何在一个 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'
    }
});
4

1 回答 1

5

您可以将存储中的每条记录设置为脏,然后调用 sync()

store.each(function(record){
    record.setDirty();
});

store.sync();

此外,您的商店正在使用 RESTful 代理,默认情况下不会批处理操作。请参阅http://docs.sencha.com/ext-js/4-2/#!/api/Ext.data.proxy.Rest-cfg-batchActions

您的商店应如下所示:

Ext.define('App.store.consultorio.Receita', {
    extend: 'Ext.data.Store',
    model: 'App.model.consultorio.Receita',
    autoLoad: false,
    proxy: {

        type: 'rest',
        batchActions: true, //<------
        reader: {
            type: 'json'
        },
        writer: {
            type: 'json'
        },
        url: 'consultas/receita.json'
    }
});
于 2013-04-11T17:08:38.997 回答