google.script.run的反义词是什么?

时间:2015-06-25 17:53:39

标签: google-apps-script

google.script.run允许客户端脚本调用服务器上的函数。

但是如何从Google Apps脚本在客户端运行脚本功能?

1 个答案:

答案 0 :(得分:0)

没有本土方式,您必须经常检查GAS,例如:

var lastReturn;
setInterval(checkChange, 500);

function checkChange(){
   google.script.run.withSuccesshandler(functionToGetAReturnedValue).functionInGSThatWillReturnAValue();
}

function functionToGetAReturnedValue(whatReturned){
   if(whatReturned !== lastReturn){
      doSomething();
      lastReturn = whatReturned;
   }
}