1

我实际上在创建表单时遵循 HtmlService 文档(https://developers.google.com/apps-script/html_service)。我注意到有这部分,它说它会在用户提交表单后成为一个对象,结构将是这样的:

{ myFile: <a Blob containing the file>; aField: <the value in the field> }

我可以知道如何访问 Google App Script 中的那些对象吗?

4

1 回答 1

4

在您的服务器代码中:

function processForm(theForm) {
  Logger.log(theForm.aField);
  Logger.log(theForm.myFile.getName());
}

在您的 HTML 中:

<form id='myForm'>
<input name='myFile' type='file'>
<input name='aField'>
</form>
<script>
google.script.run.processForm(document.getElementById('myForm'));
</script>
于 2012-07-11T04:26:02.920 回答