google.script.run的服务器响应处理程序

时间:2012-08-09 08:40:59

标签: google-apps-script

如何使用google.script.run为同一服务器调用指定成功和失败处理程序?

1 个答案:

答案 0 :(得分:9)

以下代码应该可以满足您的需求

google.script.run.withFailureHandler(myFailureHandler).withSuccessHandler(handler1);

Success and Failure Handlers段落中的documented。文字以

开头
  

您可以使用withSuccessHandler,withFailureHandler的任意组合,   和withUserObject。