在 webapp html 文件中使用 Apps 脚本库?

Using an Apps Script library in a webapp html file?

我刚开始在 Apps 脚本中使用库。当从 .GS 文件引用库代码时,我可以让库工作,但是当通过 .HTML 文件访问它们时,我无法让库工作(我收到消息 xxx is undefined)

在我花更多时间在此之前,任何人都可以确认库仅适用于 .GS 文件

谢谢

Html 库不同于服务器脚本库。在 html 中使用服务器端库没有意义。就算定义了也没用。但是,您可以通过 google.script.run

从 html(客户端)调用服务器库

您不能直接调用库函数,但是如果您在 Google Apps 脚本端创建调用库函数的函数,

google.script.run.withSuccessHandler (onSuccess) .gasfunction ()

可以用

调用

有多种用途。

参考链接:Library functions cannot be called directly