GAS 新手,正在为我的第一个脚本而苦苦挣扎。任何帮助将不胜感激。UI 显示,但我无法在 xls 文件中写入数据。当我使用处理程序时它正在工作,但是,我必须将其更改为 doPost 才能使文件上传工作。
我想要拥有多个字段和 2 个文件上传选项的 UI。有没有人有我可以用来开始的示例脚本?
我的剧本
function doGet(e)
Create a vertical panel with a grid that has text boxes
Create a form that has a file upload box
function doPost(e) {
var doc = SpreadsheetApp.openById('0Auxvh5UNOiURdE1uc1VOVGNlTE01bjF4THRmdzFnSXc');
var lastRow = doc.getLastRow();
var cell = doc.getRange('a1').offset(lastRow, 0);
cell.setValue(e.parameter.universityname);
cell.offset(0, 1).setValue(e.parameter.eventname);to age
cell.offset(0, 2).setValue(e.parameter.city);
var fileBlob = e.parameter.thefile;
var doc = DocsList.createFile(fileBlob);
var app = UiApp.getActiveApplication();
app.close();
return app;
}