这在我的浏览器中运行良好,但是当我在手机上安装应用程序并使用它时......它看起来很好,直到我强制它停止并重新打开应用程序,然后我的所有记录都消失了。
我正在使用 2.2 和 Phonegap.... 任何帮助将不胜感激。这是我的商店:
Ext.define('MyApp.store.Presentations', {
extend: 'Ext.data.Store',
config: {
model: 'MyApp.model.Presentations',
sorter: 'title',
grouper: function (record) {
var upperCased = record.get('title')[0].toUpperCase();
return upperCased; //First letter of the title - how we GROUP these
},
autoLoad: true,
proxy: {
type: 'localstorage',
id: 'presentations'
}
}
});
我这样保存:
var newPresentation = { title: prezTitle, content: '' };
Ext.getStore('Presentations').add(newPresentation);
var newRecord = Ext.getStore('Presentations').sync();