javascript – 在Google Apps脚本中设置超时

前端之家收集整理的这篇文章主要介绍了javascript – 在Google Apps脚本中设置超时前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以在Google Apps脚本中调用 setTimeout或同等功能

当我尝试运行以下代码时:

function onSubmit() {
  // we've been called,remove trigger,set timeout,re-enable,and then run function
  destroySubmitHandler();
  setTimeout(function() {
    createSubmitHandler();
    myFunction()
  },5 * 1000)
}

我收到以下错误

解决方法

显然你可以像这样使用 Utilities.sleep()功能
function onSubmit() {
  // we've been called,and then run function
  destroySubmitHandler();
  Utilities.sleep(5 * 1000)
  createSubmitHandler();
  myFunction()
}
原文链接:https://www.f2er.com/js/150935.html

猜你在找的JavaScript相关文章