我有两个或多个表单将在不同的函数中触发提交事件。
但我不知道如何将 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;
}