HTML Service
HTML
借助此服务,Apps Script 应用可以返回 HTML,通常以界面的形式返回。
如果您刚开始使用此类,我们建议您同时参阅 Html Service 指南
.
类
属性
属性 | 类型 | 说明 |
SandboxMode | SandboxMode | 一个枚举,表示可用于客户端 HtmlService 脚本的沙盒模式。 |
XFrameOptionsMode | XFrameOptionsMode | 一个枚举,表示可用于客户端 HtmlService 脚本的 X-Frame-Options 模式。 |
属性
属性 | 类型 | 说明 |
EMULATED | Enum | 一种旧版沙盒模式,仅使用 ECMAScript 3 中提供的功能来模拟 ECMAScript 5 严格模式。 |
IFRAME | Enum | 一种沙盒模式,使用 iframe 沙盒化(而非 EMULATED 和 NATIVE 模式使用的 Caja 沙盒技术)。 |
NATIVE | Enum | 一种沙盒模式,基于 ECMAScript 5 严格模式构建而成。 |
属性
属性 | 类型 | 说明 |
ALLOWALL | Enum | 系统不会设置任何 X-Frame-Options 标头。 |
DEFAULT | Enum | 设置 X-Frame-Options 标头的默认值,以保留正常的安全假设。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-12-03。
[null,null,["最后更新时间 (UTC):2024-12-03。"],[[["Apps Script's HTML service enables the creation of web-based user interfaces for applications."],["It offers classes like `HtmlOutput`, `HtmlTemplate`, and `HtmlService` to build and manage HTML content."],["You can dynamically generate HTML, set titles, manage meta tags, and control sandbox modes for security."],["The `HtmlOutput` class provides methods for content manipulation and display, while `HtmlTemplate` facilitates dynamic HTML construction."],["Consider using the guide to HTML Service for a detailed understanding and practical application of this service."]]],[]]