在 SAP 中,从控制器中的另一个方法调用事件函数


建议不要从任何其他函数调用事件函数,但是你可以在单独的函数中重构事件函数实现并从其他任何函数中调用它,如下所示

示例

BtnPress: function(oEvent) {
   // Separate the implementation in the helper function
   this.btnPressHelper();
}

// Define the helper
btnPressHelper: function() {
   //logic here
}

// call the helper from whichever function you want to get the desired output
PerformSomething: function() {
   this.btnTapHelper();
}

更新于:2019 年 12 月 18 日

531 次浏览

点燃你的职业生涯

通过完成课程获得认证

开始学习
广告