ServiceWorkerRegistration.update() - Web API 接口参考 编辑
ServiceWorkerRegistration
的update
方法尝试更新service worker。获得worker脚本的URL,逐字节匹配新获取的worker和当前的worker,存在差异的时候安装新的worker。获取worker脚本的更新操作会忽略浏览器缓存的24小时前的内容。注意: 这个特性也应用于 Web Workers.
语法
ServiceWorkerRegistration.update();
参数
None.
返回
返回 Promise
在resolve时对应一个 ServiceWorkerRegistration
对象。
示例
下面的示例注册一个service worker,然后绑定事件到按钮,这样你可以有需要时,明确的更新server worker:
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/sw-test/sw.js', {scope: 'sw-test'}).then(function(registration) {
// registration worked
console.log('Registration succeeded.');
button.onclick = function() {
registration.update();
}
}).catch(function(error) {
// registration failed
console.log('Registration failed with ' + error);
});
};
标准
Specification | Status | Comment |
---|---|---|
Service Workers ServiceWorkerRegistration.update() | Working Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论