【发布时间】:2017-01-07 23:43:31
【问题描述】:
试图找出用于制作 Google 文档插件的 Google Apps 脚本。 我有:
代码.gs
function helloWorld() {
return "Hello World";
}
在我调用的code.gs下:
Sidebar.html
console.log("This should say Hello World: " + google.script.run.helloWorld())
返回:
This should say Hello World: undefined
我缺少什么明显的东西?
【问题讨论】:
标签: javascript jquery google-apps-script google-docs