Open a URL on Form Submit Event - Google App Script

房东的猫 提交于 2021-02-17 07:00:07

问题


I am using the sample code provided by Serge insas found here: Google Apps Script to open a URL

I have modified the code slightly as seen below:

Code.GS

   function modalUrl(){
      FormApp.getUi()
       .showModalDialog(
         HtmlService.createHtmlOutputFromFile('openUrl').setHeight(50),
         'Opening StackOverflow'
       )
    } 

openURL.html

<!DOCTYPE html>
<html>
  <head>
   <base target="_blank">
    <script>
     var url1 ='https://stackoverflow.com/a/54675103';
     var winRef = window.open(url1);
     winRef ? google.script.host.close() : window.alert('Allow popup to redirect you to '+url1) ;
     window.onload=function(){document.getElementById('url').href = url1;}
    </script>
  </head>
  <body>
    Kindly allow pop ups</br>
    Or <a id='url'>Click here </a>to continue!!!
  </body>
</html>

The issue is appears is that it is not possible to access FormApp.getUi after a form has been submitted. See the error below:


回答1:


As stated in the documentation regarding UI class:

A script can only interact with the UI for the current instance of an open editor, and only if the script is container-bound to the editor.

In the case of a Google Form, the editor is when you're editing a specific form and not when you're filling one. You can't automatically redirect a user after a form submission if the form is not embedded in a website, may be the workaround in this support article can help you.



来源:https://stackoverflow.com/questions/60597363/open-a-url-on-form-submit-event-google-app-script

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!