1

我在 Extjs 4.2 中有一个网格,它的存储配置如下。

var userStore = Ext.create('Ext.data.JsonStore', {
model: 'User',
proxy: {
    type: 'ajax',
    api: {
        create: '/pwbench/form/products/fctrmgmt/data.json',
        read: '/pwbench/form/products/fctrmgmt/data.json',
        update: '/pwbench/form/products/fctrmgmt/data.json',
        destroy: '/pwbench/form/products/fctrmgmt/data.json'
    },
    reader: {
        type: 'json'
    },
    writer: {
        type: 'json'
    }
},
autoLoad: true

});

在网格内,单击保存时,我配置了以下内容。

handler: function() {
        var recordsArray = new Array();
        var dataRecords = new Array();
        recordsArray = grid.getStore().data.items;
        for (var i = 0; i < recordsArray.length; i++) {
            console.log(recordsArray[i].data);
            dataRecords.push(Ext.encode(recordsArray[i].data));
        }
        console.log(dataRecords.length);
        Ext.Ajax.request({
            url: 'mainpage.jsp',
            params: {
                records: dataRecords
            },
            success: function(response){
                var text = response.responseText;
                console.log(text);
                userStore.sync();
                userStore.load();

            }
        });

    }

我有一个 java 类,它能够读取 ajax 请求发送的数据,然后我覆盖了 store 用来获取数据的 data.json 文件。json 文件被覆盖而没有任何问题,但问题是当我在同步后调用 userStore.load() 时,它会在进行任何更改之前显示旧数据。即使在刷新网格或刷新整个页面时,它也会显示旧数据,只有当我在 Eclipse 中刷新整个项目并重新加载页面时,它才会显示新的覆盖数据。

这是一些缓存问题吗?有人可以告诉我是什么问题吗?

4

1 回答 1

0

您应该将负载放在同步的成功回调中

userStore.sync({
        success: function() {
           userStore.load...
于 2014-05-30T13:17:45.230 回答