0

我查看了其他帖子,并且正在努力解决如何将表单值传递给 GAS 的相同问题。由于 GUI 编辑器已经贬值,我决定走htmlservice表单路线。在下面这个简单的代码中,我只是试图访问表单字段aField并将其粘贴到单元格中。

function doGet() {

return HtmlService.createHtmlOutputFromFile('myForm.html');
}  

function processForm(value) {

var myRange = SpreadsheetApp.openById("xxx").getSheetByName("Results-List").getDataRange("B20");    
myRange.setValue(value.aField);

 }

这是 HTML 模板myForm.html

 <html>

 <form id="myForm">
 <input name="aField" id="aField">
 <input type="button" id="submit" value="submit" onclick = "sendData()">
 </form>

 <script>
   function sendData() {
    google.script.run.processForm(document.getElementById("myForm"));
}

 </script>
 </html>
4

1 回答 1

0

.getDataRange()有不同的用途。使用.getRange('B20') 让它工作。

于 2013-03-28T22:08:42.970 回答