我有一个请求 URL 的函数,如果我使用该函数并在其中返回,则整个 html 代码将位于函数名称请求“=testFormula()”的单元格中。为什么如果我使用公式函数它会起作用,但如果我使用事件一它就不起作用?
function onEdit(event){
testCom();
}
// This one will trigger automaticaly when you edit any cell in the sheet
function testCom(){
var doc = SpreadsheetApp.getActiveSpreadsheet();
doc.getRange('a1').setValue("Before fetching");
var response = UrlFetchApp.fetch("http://www.google.com/");
doc.getRange('a1').setValue(response);
}
// Use in a cell "=testFormula()" to run this function
function testFormula(){
var response = UrlFetchApp.fetch("http://www.google.com/");
return response;
}
提前致谢