1

我正在将我的应用程序设置为离线运行,但我遇到了障碍。我的所有文件都被缓存了,但我在 Safari 控制台中注意到该应用程序正在向文件名添加查询字符串,因此未加载正确的文件。在 Safari 中,链接看起来像这样

http://serverpath/resources/data/data.json?_dc=1337372230084&node=root&page=1&start=0&limit=25

有什么方法可以防止查询字符串被添加?我的数据存储代码如下。

Ext.define('App.store.Sections', {
    extend: 'Ext.data.TreeStore',

    requires: [
        'App.model.Sections'
    ],

    config: {
        autoLoad: true,

        model: 'App.model.Sections',

        proxy: {
            type: 'ajax',
            url: 'resources/data/data.json',
            reader: {
                type: 'json',
                rootProperty: 'items'
            }
        }
    }
});
4

1 回答 1

1

请参阅Ext.Ajax.setDisableCaching

小心双重否定:在你的情况下它必须设置为 false :你不想使用禁用缓存系统。

于 2012-05-20T19:25:36.340 回答