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;
}