在Google表格中,我遇到了以下代码的问题:
function assignEditUrls() {
var form = FormApp.openById('Google-Form-ID-Goes-Here');
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Sheet-Name-Goes-Here');
var data = sheet.getDataRange().getValues();
var urlCol = 7;
var responses = form.getResponses();
var timestamps = [], urls = [], resultUrls = [];
for (var i = 0; i < responses.length; i++) {
timestamps.push(responses[i].getTimestamp().setMilliseconds(0));
urls.push(responses[i].getEditResponseUrl());
}
for (var j = 1; j < data.length; j++) {
resultUrls.push([data[j][0]?urls[timestamps.indexOf(data[j][0].setMilliseconds(0))]:'']);
}
sheet.getRange(2, urlCol, resultUrls.length).setValues(resultUrls);
}
我遇到的问题是,在设置表单ID和工作表名称之后,出现以下错误:
TypeError:在对象FormQId中找不到函数setMilliseconds。 (第17行,文件“代码”)
以下内容:
resultUrls.push([data[j][0]?urls[timestamps.indexOf(data[j][0].setMilliseconds(0))]:'']);
我绝不是天才,我也不知道如何或在哪里开始故障排除。