试图找出用于制作 Google 文档插件的 Google Apps 脚本。我有:
function helloWorld() {
return "Hello World";
}
Run Code Online (Sandbox Code Playgroud)
在我调用的 code.gs 下:
console.log("This should say Hello World: " + google.script.run.helloWorld())
Run Code Online (Sandbox Code Playgroud)
它返回:
This should say Hello World: undefined
Run Code Online (Sandbox Code Playgroud)
我缺少的显而易见的东西是什么?