3

假设我已经按照 Sencha Touch 2 Getting Started 教程进行操作,并且有一个由 JsonP 代理数据填充的列表——如果用户离线,我该如何让缓存的数据出现?目前,如果没有互联网连接,则根本不会显示该列表。

在视频教程中,Ed 简要提到这可以“轻松完成”,但没有提供我在 Sencha 文档中可以找到的参考。

以下是我的商店对象的示例:

Ext.define('test.store.NewsListStore', {
extend : 'Ext.data.Store',
requires: ['test.model.NewsListModel', 'Ext.data.Request'],
config : {
    model : 'test.model.NewsListModel',
    storeId : 'news-list-store',
    autoLoad: true,
    proxy: {
    type: 'jsonp',
    url : 'http://example.com/jsonp',
    config : {
        noCache: false
    }
   },
    grouper : {
        groupFn : function(record) {
            var unix_timestamp = parseInt(record.get("entry_date"));
            var date = new Date( unix_timestamp*1000 );
            return Ext.Date.format(date, 'F');
        }
    },
}
});
4

2 回答 2

0

以下是您可以使用 localstorage 的示例:

http://www.robertkehoe.com/2012/11/sencha-touch-2-localstorage-example/

它使用 Sencha Touch 2

于 2013-06-20T13:41:20.057 回答
0

看看这个关于离线使用 Sencha Touch 应用程序的教程- 它不是 Sencha Touch 2,但它可能会为您指明正确的方向

于 2012-07-19T04:37:20.690 回答