我认为 Google 示例脚本中存在一些问题。我发现和修改的是,
- 脚本标签上的 async 和 defer 属性
您可能想要使用 async 属性,但快速解决方法是删除 async 并将 defer 添加到第一个和第二个脚本标签。
<pre id="content"></pre>
<!-- add defer to the first script tag -->
<script defer type="text/javascript">
...
<!-- remove async from the 2nd tag -->
<script defer src="https://apis.google.com/js/api.js"
- callAppsScript 函数中字符串的语法错误。
这似乎是转义语法错误和网页中示例代码的换行符处理的结合。以下是我修改的代码的工作片段。
resource: {
files: [{
name: 'hello',
type: 'SERVER_JS',
source: 'function helloWorld() {\n console.log("Hello, world!");\n}'
}, {
name: 'appsscript',
type: 'JSON',
source: "{\"timeZone\":\"America/New_York\",\"exceptionLogging\":\"CLOUD\"}"
}]
- 调用不存在的函数
示例代码调用callScriptFunction
里面updateSigninStatus
不存在。它必须是callAppsScript
,但后者需要一个参数。
我将调用替换为callScriptFunction();
以下内容,并且它起作用了。
callAppsScript(gapi.auth2.getAuthInstance());
通过进行上述更改,示例可以在服务器端创建一个新脚本,但在更新它时会返回错误。所以看起来示例代码中还有一些潜在的问题,但这是另一个问题,与原始问题无关,我猜。