0
我有兩個或更多的形式,將觸發不同的功能內提交事件。如何區分doPost()中提交的源代碼?
但我不知道如何的doPost()分離成對應於每個源子程序發送的事件。
下面的代碼我試過失敗。
//---------------------------------------------------------------------------
function doPost(e)
{
var app = UiApp.getActiveApplication();
// 'mainform' is the id of one of the forms with a submit button
if (e.parameter.source == 'mainform') {
var fileBlob = e.parameter.thefile;
doc = DocsList.getFolder('releaseTmp').createFile(fileBlob);
}
return app;
}
可以只有一個doGet() - 請在發佈