URL を要求する関数があり、その関数を return と共に使用すると、html コード全体が関数名 request "=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;
}
前もって感謝します