2

我在本地存储中保存了某些数据。相同的内容已保存到商店中。我需要的是从本地存储中提取特定项目并显示它。我不知道该怎么做。

例如:

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());

不起作用,因为它尚未定义。但是该值存在于本地存储中。我如何访问该值并在此处显示它?

4

1 回答 1

3

要从配置为使用localstorage代理的商店获取数据:

`Ext.getStore('configStore').load()`

要遍历您的 Store 实例并打印它们:

var store = Ext.getStore('configStore').
store.each(function(record){
  console.log(record.get('the_name_of_field_you_want'));
});

希望这可以帮助。

于 2012-05-29T03:53:54.833 回答