Cache.addAll() - Web API 接口参考 编辑
这是一个实验中的功能
此功能某些浏览器尚在开发中,请参考浏览器兼容性表格以得到在不同浏览器中适合使用的前缀。由于该功能对应的标准文档可能被重新修订,所以在未来版本的浏览器中该功能的语法和行为可能随之改变。
概要
Cache
接口的 addAll()
方法接受一个URL数组,检索它们,并将生成的response对象添加到给定的缓存中。 在检索期间创建的request对象成为存储的response操作的key。
Note: addAll()
will overwrite any key/value pairs previously stored in the cache that match the request, but will fail if a resulting put()
operation would overwrite a previous cache entry created by the same addAll()
method.
Note: Initial Cache implementations (in both Blink and Gecko) resolve Cache.add
, Cache.addAll
, and Cache.put
promises when the response body is fully written to storage. More recent spec versions have newer language stating that the browser can resolve the promise as soon as the entry is recorded in the database even if the response body is still streaming in.
语法
cache.addAll(requests[]).then(function() {
//requests have been added to the cache
});
参数
- requests
- 要获取并添加到缓存的字符串URL数组。
返回值
A Promise
that resolves with void.
Exceptions
Exception | Happens when |
---|---|
TypeError | The URL scheme is not The Response status is not in the 200 range (i.e., not a successful response.) This occurs if the request does not return successfully, but also if the request is a cross-origin no-cors request (in which case the reported status is always 0.) |
示例
此代码块等待一个 InstallEvent
事件触发,然后运行 waitUntil
来处理该应用程序的安装进程。 包括调用 CacheStorage.open
创建一个新的cache,然后使用 addAll()
添加一系列资源。
this.addEventListener('install', function(event) {
event.waitUntil(
caches.open('v1').then(function(cache) {
return cache.addAll([
'/sw-test/',
'/sw-test/index.html',
'/sw-test/style.css',
'/sw-test/app.js',
'/sw-test/image-list.js',
'/sw-test/star-wars-logo.jpg',
'/sw-test/gallery/',
'/sw-test/gallery/bountyHunters.jpg',
'/sw-test/gallery/myLittleVader.jpg',
'/sw-test/gallery/snowTroopers.jpg'
]);
})
);
});
规范
Specification | Status | Comment |
---|---|---|
Service Workers Cache | Working Draft | Initial definition. |
浏览器兼容性
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 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 46.0 | (Yes)[1] | 未实现 | 24 | 未实现 |
Require HTTPS | 46.0 | (Yes)[1] | ? | ? | ? |
TypeError if request is not successful | (Yes) | 47.0 (47.0)[1] | (Yes) | (Yes) | (Yes) |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|
Basic support | 未实现 | 未实现 | (Yes) | ? | 未实现 | ? | 未实现 | 46.0 |
Require HTTPS | 未实现 | 未实现 | (Yes) | ? | ? | ? | ? | 46.0 |
TypeError if request is not successful | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
[1] Service workers (and Push) have been disabled in the Firefox 45 & 52 Extended Support Releases (ESR.)
参见
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论