我有一個 html,用戶請求添加并輸入數(shù)據(jù)。html 正文中的 javascript 調(diào)用服務(wù)器端。我無法使用保存的 ID 或 URL 連接工作表以添加行。我無法更新我的電子表格,盡管 @Serge insas 評論說 openById“這意味著“打開以進(jìn)行讀寫”。我犯了一個簡單的錯誤還是這是不可能的。從客戶端啟動的代碼正在服務(wù)器中運(yùn)行。const ssId = PropertiesService.getScriptProperties().getProperty('ssId');var sheet = SpreadsheetApp.openById("[ssId]").getSheetByName('Sheet1');const ssId = PropertiesService.getScriptProperties().getProperty('ssId');var sheet = SpreadsheetApp.openById("ssId").getSheetByName('Sheet1');兩者都出現(xiàn)錯誤:異常:在對象 SpreadsheetApp 上獲取方法或?qū)傩?openById 時出現(xiàn)意外錯誤。 const ssUrl = PropertiesService.getScriptProperties().getProperty('ssUrl'); var sheet = SpreadsheetApp.openByUrl("ssUrl").getSheetByName('Sheet1');獲取錯誤:異常:無效參數(shù):url
更新從客戶端運(yùn)行的服務(wù)器端代碼中的電子表格 html javascript 不起作用
藍(lán)山帝景
2023-09-28 16:42:13