1
我希望'openById'找到它自動附加的電子表格的ID(如果可能的話)?從doGet函數中找到附加電子表格的ID
目前,我正在將電子表格中的單元格拉到HTML模板中,該模板使用單元格數據填充設計。
如果用戶'製作了電子表格的副本',則ID(我手動輸入的)仍然是我使用的原始電子表格的ID,而不是他們正在使用的新電子表格ID。
是否可以動態獲取腳本附加的電子表格的ID?
// code.gs
function doGet() {
var template = HtmlService.createTemplateFromFile('index.html')
template.sheet = SpreadsheetApp.openById('THE SPREADSHEET ID');
// returning .evaluate() (an HtmlOutput object) will allow you to display this in a web app.
// to get the string HTML content, use .getContent() on the HtmlOutput
return template
.evaluate();
}