我实际上是在创建表单时遵循HtmlService文档(https://developers.google.com/apps-script/html_service)。我注意到有一个部分,它表示在用户提交表单后它将成为一个对象,结构将是这样的:
{ myFile: <a Blob containing the file>;
aField: <the value in the field> }
我可以知道如何在Google App Script中访问这些对象吗?
答案 0 :(得分: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>