0

这是我正在运行的代码

document.addEventListener('DOMContentLoaded', function() {
google.script.run.withSuccessHandler(populateSearchDropDown).searchByVehicleNum();
});

现在我的问题是,我可以在 withSuccessHandler 中传递 2 个回调函数吗?

像这样的东西

google.script.run.withSuccessHandler(function1,function2).scriptFunc();

顺便说一句,我试过了,但它不起作用

4

1 回答 1

0

那么,下面的修改呢?

从:

google.script.run.withSuccessHandler(function1,function2).scriptFunc();

至:

google.script.run.withSuccessHandler(sample).scriptFunc();

function sample(e) {
  function1(e);
  function2(e);
}

或者

google.script.run.withSuccessHandler(e => {function1(e), function2(e)}).scriptFunc();

参考:

于 2021-04-03T12:02:27.240 回答