Google Apps 脚本:HTML - 表单提交,获取输入值



我正在尝试使用带有表单的侧边栏来获取用户输入。该代码绑定到谷歌表格文件。

Code.gs:

function onOpen() {
  SpreadsheetApp.getUi()
      .createMenu('Custom Menu')
      .addItem('Show sidebar', 'showSidebar')
      .addToUi();
}
function showSidebar() {
  var html = HtmlService.createHtmlOutputFromFile('Page')
      .setTitle('My custom sidebar')
      .setWidth(300);
  SpreadsheetApp.getUi()
      .showSidebar(html);
}
function processForm(formObject) {
  var ui = SpreadsheetApp.getUi();
  ui.alert("This should show the values submitted.");
}

页.html:

<!DOCTYPE html>
<html>
  <head>
    <base target="_top">
  </head>
  <body>
    Please fill in the form below.<br><br>
    <form id="myForm" onsubmit="google.script.run.processForm(this)">
      First name:
      <input type="text" name="firstname"><br><br>
      Last name:
      <input type="text" name="lastname"><br><br>
      Gender:<br>
      <input type="radio" name="gender" value="male" checked> Male<br>
      <input type="radio" name="gender" value="female"> Female<br>
      <input type="radio" name="gender" value="other"> Other<br>
      <br>
      <input type="submit" value="Submit">
    </form><br>
    <input type="button" value="Cancel" onclick="google.script.host.close()" />
  </body>
</html>

当我按"提交"时,警报会打开并显示给定的消息,我的浏览器会打开一个显示空白页面的 url(https://n-ms22tssp5ubsirhhfqrplmp6jt3yg2zmob5vdaq-0lu-script.googleusercontent.com/userCodeAppPanel?firstname=&lastname=&gender=male(。我希望警报显示提交的值,并且不希望打开额外的页面。

非常简单的问题,但我读到的所有内容似乎都过于复杂。我只想知道获取用户输入的最简单方法。

HTML 表单的默认行为是导航到提交链接。为了防止这种默认行为,您可以在 HTML 中使用event.preventDefault()函数,如下所示:

 <form id="myForm" onsubmit="event.preventDefault(); google.script.run.processForm(this)">

注意:您可以在此处找到更详细的说明

表单元素作为参数中的对象发送到 processForm 函数,要查看它们,您可以使用 JSON.stringfy() .在此处了解有关对象的更多信息

您的 processForm 函数将按如下方式修改:

function processForm(formObject) {
  var ui = SpreadsheetApp.getUi();
  ui.alert(JSON.stringify(formObject))
  // To access individual values, you would do the following
  var firstName = formObject.firstname 
  //based on name ="firstname" in <input type="text" name="firstname">
  // Similarly
  var lastName = formObject.lastname
  var gender = formObject.gender
  ui.alert (firstName+";"+lastName+";"+gender)
}
我认为

对于 html 表单,默认提交方法是 GET,提交的表单数据将在页面地址字段中可见。

您可以尝试将方法更改为 POST:

  <form id="myForm" onsubmit="event.preventDefault(); google.script.run.processForm(this) method="post"">

请参阅此链接 https://www.w3schools.com/html/html_forms.asp#method

编辑:我尝试了这个,意识到我们仍然需要添加 event.preventDefault((;

相关内容

  • 没有找到相关文章

最新更新