假设我已经按照 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');
}
},
}
});