WindowOrWorkerGlobalScope - Web API 接口参考 编辑
WindowOrWorkerGlobalScope
mixin 了对 Window
和WorkerGlobalScope
接口的公共特性的描述。显然除了下文即将列出的之外,这些接口中的每一个,都可以增加更多的特性。
Note: WindowOrWorkerGlobalScope
是一个 mixin 而并非 interface。不能创建一个类型为 WindowOrWorkerGlobalScope 的对象。
属性
以下属性由 WindowOrWorkerGlobalScope
mixin 定义,同时被 Window
和 WorkerGlobalScope
实现。
WindowOrWorkerGlobalScope.caches
只读- 返回与当前上下文相关联的
CacheStorage
对象。这个对象提供了一些功能,例如存储可供离线使用的 asstes,以及对 requests 生成自定义的 responses 。 WindowOrWorkerGlobalScope.indexedDB
只读- 提供一种机制,以供应用可以异步访问 indexed databases;返回
IDBFactory
对象。 WindowOrWorkerGlobalScope.isSecureContext
只读- 返回一个 boolean 值, 表示当前上下文是否安全:安全返回
true,否则返回
false 。
WindowOrWorkerGlobalScope.origin
只读- 返回全局对象的 origin,序列化为 string 。
方法
以下方法由 WindowOrWorkerGlobalScope
mixin 定义,同时被 Window
和 WorkerGlobalScope
实现。
WindowOrWorkerGlobalScope.atob()
- 对 base-64加密的数据字符串进行解码。
WindowOrWorkerGlobalScope.btoa()
- 从二进制数据中创建 base-64 编码的 ASCII 字符串。
WindowOrWorkerGlobalScope.clearInterval()
- 取消对
WindowOrWorkerGlobalScope.setInterval()
的重复执行。 WindowOrWorkerGlobalScope.clearTimeout()
- 取消对
WindowOrWorkerGlobalScope.setTimeout()
的延迟执行。 WindowOrWorkerGlobalScope.createImageBitmap()
- 接受多个不同的图像源, 返回一个
Promise
which resolves to anImageBitmap
。可选: 指定 (sx, sy) with width sw, and height sh ,将源裁切成矩形。 WindowOrWorkerGlobalScope.fetch()
- 开始从网络中 fetch 一个资源的进程。
WindowOrWorkerGlobalScope.setInterval()
- 每过一个指定的毫秒时间后,执行一次指定函数。
WindowOrWorkerGlobalScope.setTimeout()
- 过了一个指定的毫秒时间后,执行一次指定函数。
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living StandardWindowOrWorkerGlobalScope mixin | Living Standard | This is where the main mixin is defined. |
Fetch fetch() | Living Standard | Definition of the fetch() method. |
Service Workers caches | Working Draft | Definition of the caches property. |
Indexed Database API Draft indexedDB | Recommendation | Definition of the indexedDB property. |
Secure Contexts isSecureContext | Candidate Recommendation | Definition of the isSecureContext property. |
Browser compatibility
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!Feature | Firefox (Gecko) | Chrome | Edge | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 52 (52) | 54 | ? | ? | ? | ? |
origin | 54 (54) | 59 | ? | ? | ? | ? |
Feature | Android Webview | Edge | Firefox Mobile (Gecko) | Android | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|
Basic support | ? | ? | 52.0 (52) | ? | ? | ? | ? | 54 |
origin | ? | ? | 54.0 (54) | ? | ? | ? | ? | 59 |
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论