[解决了]
我正在关注这个教程链接
我的主视图中有一个按钮,如下所示
Ext.define('Sencha.view.Main', {
extend: 'Ext.Panel',
config: {
items:[
{
text:'hello',
xtype:'button',
action:'pingHomeBadge',
}
]
}
});
我的主控制器看起来像
Ext.define('Sencha.controller.Main', {
extend: 'Ext.app.Controller',
config: {
refs: {
starButton:'button[action=pingHomeBadge]',
},
control: {
starButton: {
tap:'incrementHomeBadge',
},
}
},
incrementHomeBadge: function() {
alert("hello");
},
});
该按钮被显示,但是当我单击该按钮时没有任何反应。有人知道我在做什么错吗?我几乎复制粘贴了教程中的代码。谢谢