gpt4 book ai didi

javascript - 我如何在 extjs 中访问这个内部项目

转载 作者:行者123 更新时间:2023-12-03 12:38:04 26 4
gpt4 key购买 nike

我有这个代码

Ext.define('Header', {

getItems: function() {
return somepanel;
}

items: [this.getItems()]

});

这不起作用。我收到 getItems 未定义的错误

最佳答案

你的问题有点模糊,但是,你可以添加一个模板方法:

Ext.define('MyContainer', {
extend: 'Ext.container.Container',

initComponent: function() {
this.items = this.createItems();
this.callParent();
},

createItems: function() {
return [{title: 'Foo'}];
}
});

关于javascript - 我如何在 extjs 中访问这个内部项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23645555/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com