如何在 google 插件中创建 iframe
How to create an iframe inside a google addon
我正在尝试创建一个带有 iframe 的示例插件。
我收到以下错误:
The value returned from Apps Script has a type that cannot be used by the add-ons platform. Also make sure to call build on any builder before returning it.
您不能将 iframe 与 Gmail 插件一起使用。您只能使用 google 应用程序脚本构建卡片。这里还有一些限制 https://developers.google.com/gmail/add-ons/guides/restrictions
简而言之:没有
插件是使用 卡片 构建的。这些 Cards 依次呈现标记。这意味着您不能在这些卡片中使用任何形式的 HTML。您必须调用 google 提供的方法来呈现 UI。但是,您可以创建一个按钮以在新 window 中打开 URL。检查 this.
我正在尝试创建一个带有 iframe 的示例插件。 我收到以下错误:
The value returned from Apps Script has a type that cannot be used by the add-ons platform. Also make sure to call build on any builder before returning it.
您不能将 iframe 与 Gmail 插件一起使用。您只能使用 google 应用程序脚本构建卡片。这里还有一些限制 https://developers.google.com/gmail/add-ons/guides/restrictions
简而言之:没有
插件是使用 卡片 构建的。这些 Cards 依次呈现标记。这意味着您不能在这些卡片中使用任何形式的 HTML。您必须调用 google 提供的方法来呈现 UI。但是,您可以创建一个按钮以在新 window 中打开 URL。检查 this.