我正在使用 localStorage 开发 Sencha Touch 2 应用程序。
我像这样从本地存储中获取值:
var localStore = Ext.getStore('localStore');
localStore.getAt(0).data.name1 //get the value for key 'name1'
但是在第一次访问时,本地存储是空的。如何检查密钥是否存在?当我做:
if(localStore.data.name1 === null)
我得到:
Uncaught TypeError: Cannot read property 'name1' of undefined