我在本地存储中保存了某些数据。相同的内容已保存到商店中。我需要的是从本地存储中提取特定项目并显示它。我不知道该怎么做。
例如:
model.data.servname = servname;
model.data.port = port;
model.data.protocol = protocol;
model.data.username = username;
model.data.password = password;
model.data.domain = domain;
model.data.apptitle = apptitle;
model.data.appconfig = appconfig;
model.save();
var store = Ext.getStore('configStore'); // Get the store
store.add({servname : 'infoimage'}); // Add an instance of you model item
store.sync(); // Will add the item to the locastorage
var item = store.getAt(0);
我的这部分代码将数据保存到本地存储和存储中。现在,在我的主控制器中:
init : function() {
if (!this.landingoverlay) {
this.landingoverlay = Ext.Viewport.add({
xtype : 'landingPageOverlay'
});
}
this.landingoverlay.show();
}
我想显示 apptitle 值。
但
console.log(Ext.getCmp('apptitle').getValue());
不起作用,因为它尚未定义。但是该值存在于本地存储中。我如何访问该值并在此处显示它?