gpt4 book ai didi

Extjs 4.1 : So strange error: Uncaught TypeError: Cannot read property 'items' of undefined

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

您可以更改示例:app/simple/app/Viewport.js对此:

您将在 Chrome 控制台中收到此错误:

Uncaught TypeError: Cannot read property 'items' of undefined ext-all.js:18 Ext.cmd.derive.getDockedItems



但是,如果您对此发表评论:
initComponent : function() {
this.callParent();
},

一切都好。
Ext.define('AM.view.Viewport', {
extend : 'Ext.container.Viewport',

layout: 'border',
items : [{
border : false,
region : 'north',
xtype : 'progressbar',
text : 'Ready',
height : 20
}, {
region : 'west',
xtype : 'userlist',
width:300
}, {
region : 'center',
xtype : 'treepanel',
initComponent : function() {
this.callParent();
},
columns : [{
xtype : 'treecolumn',
sortable : false,
width : 200,
text : 'lala',
dataIndex : 'text'
}, {
flex : 1,
sortable : false,
text : 'haha',
dataIndex : 'pars'
}]
}]
});

最佳答案

1-尝试像这样使用Parents参数调用:

.
.
.
,initComponent : function() {
this.callParent(arguments);
},
.
.
.

或调用父类(super class):
.
.

,initComponent : function() {
this.callSuper(arguments);
},
.
.
.

关于Extjs 4.1 : So strange error: Uncaught TypeError: Cannot read property 'items' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19285217/

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