如何使用google.script.run为同一服务器调用指定成功和失败处理程序?
答案 0 :(得分:9)
以下代码应该可以满足您的需求
google.script.run.withFailureHandler(myFailureHandler).withSuccessHandler(handler1);
Success and Failure Handlers
段落中的documented。文字以
您可以使用withSuccessHandler,withFailureHandler的任意组合, 和withUserObject。