从谷歌表单提交导入附件的参考错误

时间:2018-04-24 10:17:52

标签: google-apps-script referenceerror

所以我的脚本有问题。

我想要它做的是,在表单提交时,它是将此表单的附件放入一个文件夹。因此脚本正在创建我想要的文件夹,使用正确的名称,但脚本不会将上载到表单的文档导入到它创建的文件夹中。该脚本从我的表单响应表开始。任何帮助都感激不尽。当我尝试运行它时说; ReferenceError:" items"没有定义。 (第13行,文件"代码")请记住,我不为生活编码,这是为了让我的工作更轻松。

Function createStudentFolder() {

   // identify the sheet where the data resides 
   var ss = SpreadsheetApp.getActive();
   var names = ss.getSheetByName("Form Responses 1");

   //identify the cell that will be used to name the folder  
   var studentName = names.getRange(names.getLastRow(), 3).getValue();  

   //identify the parent folder the new folder will be in 
   var parentFolder=DriveApp.getFolderById ("0B1r05LzCHjrefnhoMTZ3M1FaVFVxTDBfZDBiR1AxSXpEOUFvanltdmIxd1V3cWw4VGoyVjA");

   var submittedID = items[4].getResponse();

   for (i = 0; i < submittedID.length; i++) { 
      var file = DriveApp.getFileById(submittedID[i]);

      //create the new folder 
      var newFolder=parentFolder.createFolder(studentName);

   }
}

0 个答案:

没有答案