google.script.run允许客户端脚本调用服务器上的函数。
但是如何从Google Apps脚本在客户端运行脚本功能?
答案 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;
}
}