我试图在 View 中获取父组件,但总是收到此错误:
Cannot call method 'getParent' of undefined
这是代码:
initialize: function() {
this.callParent();
this.loadMates();
},
loadMates: function() {
var store = Ext.create('App.store.user.Mates');
store.getProxy().setExtraParam('userId', this.getParent().getUserId());
this.setStore(store);
}
我不知道为什么初始化的 View 是undefined
. 我试图将“this”作为参数推送,但没有成功。
提前非常感谢。
编辑: