这是我正在运行的代码
document.addEventListener('DOMContentLoaded', function() {
google.script.run.withSuccessHandler(populateSearchDropDown).searchByVehicleNum();
});
现在我的问题是,我可以在 withSuccessHandler 中传递 2 个回调函数吗?
像这样的东西
google.script.run.withSuccessHandler(function1,function2).scriptFunc();
顺便说一句,我试过了,但它不起作用