我希望在加载表单后调用onclick事件。 我没有找到完成事件或任何模拟
类似于:kind: someUI, onComplete: "Init"
答案 0 :(得分:1)
我不完全确定你的描述,但听起来你想要在加载应用程序时发生一些动作。您可以尝试使用入门指南中所述的ready()
。
http://enyojs.com/docs/latest/developer-guide/getting-started/creating-and-building-an-app.html
另一种选择是在执行rendered
方法的初始应用buttonTapped()
中添加内容。
rendered: function () {
this.inherited(arguments);
this.doSomething();
}
答案 1 :(得分:0)
我解决了。我像这样重写代码
{kind: IconButton, src: '@../../assets/info.png', ontap: "buttonTapped"},
create: function() {
this.inherited(arguments);
this.ServiceReq();
},
buttonTapped: function(inSender, inEvent) {
this.ServiceReq();
return;
},
ServiceReq: function()
{ console.log('Clicked');}
但我不确定这是一个很好的解决方案,但它有效