在 Extjs 6 中,如何通过绑定或直接分配将配置属性直接分配给视图?
Ext.define('App.view.main.Main', {
extend: 'Ext.Container',
config: {
btnLabel: 'MyButton'
},
someOtherProperty:'xyz',
items: [{
xtype:'button',
//text:this.someOtherProperty,
//text:this.btnLabel,
//text:this.getBtnLabel(),
//here accessing this throws error, while loading this refers to windows object and not the class...
width:'150px'
}],
});
我可以将属性移动到 ViewModel 并访问它,但我的问题是,我们不能将类级别属性分配给它的子组件吗?