我在 app.js 文件中。当用户成功登录到系统时,有一个函数会被执行;
loginSuccess: function() {
this.getViewport().getLayout().setActiveItem(1).store.load(); // Calls the Store of the i need to navigate
this.getViewport().getLayout().setActiveItem(1); // The view i will be navigating
}
我收到一条错误消息this.getViewport().getLayout().setActiveItem(1).store is undefined
。我想我以错误的方式称呼商店。我怎么能纠正这个?我如何从 app.js 调用商店?
更新
var st = Ext.getStore('myStore');
st.load();
st.on('load', function() {
this.getViewport().getLayout().setActiveItem(1);
});