是否可以在Google Apps腳本的HtmlService
中使用localStroage
? 我試過下面的代碼,但它顯示錯誤消息,因爲localStorage沒有定義。是否可以在HTMLService中使用localStorage?
function doGet() {
var ui = HtmlService.createHtmlOutputFromFile('main');
return ui;
}
<!DOCTYPE html>
<html>
<head>
<script>localStorage.setItem('howGood', 'awesome');</script>
</head>
<body>
</body>
</html>
有趣的,沒有嘗試的localStorage自己還,但你可以使用服務器端的ScriptDb [1],而不是 - 工作正常。 [1] https://developers.google.com/apps-script/scriptdb –