2012-07-11 65 views
0

我實際上遵循HtmlService文檔(https://developers.google.com/apps-script/html_service)創建表單。我注意到有這個部分,它說這將是用戶之後的對象提交表單和結構將是這樣的:訪問對象是谷歌應用腳​​本

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

我能知道如何可以訪問谷歌應用程序腳本的對象?

回答

2

在您的服務器代碼:

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>