博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[PWA] 11. Serve skeleton cache for root
阅读量:5298 次
发布时间:2019-06-14

本文共 1212 字,大约阅读时间需要 4 分钟。

Intead of cache the root floder, we want to cache skeleton instead.

self.addEventListener('install', function (event) {    event.waitUntil(        caches.open(staticCacheName).then(function (cache) {            return cache.addAll([                '/skeleton',                'js/main.js',                'css/main.css',                'imgs/icon.png',                'https://fonts.gstatic.com/s/roboto/v15/2UX7WLTfW3W8TclTUvlFyQ.woff',                'https://fonts.gstatic.com/s/roboto/v15/d-6IYplOFocCacKzxwXSOD8E0i7KZn-EPnyo3HZu7kw.woff'            ]);        })    );});

 

Respond to requests for the root page with thepage skeleton from the cache:

self.addEventListener('fetch', function (event) {
// use the page skeleton from the cache let requestUrl = new URL(event.request.url); if(requestUrl.origin === location.origin){ if(requestUrl.pathname === '/'){ event.respondWith( caches.match('/skeleton') ); return; } } event.respondWith( caches.match(event.request).then(function (response) { return response || fetch(event.request); }) );});

 

转载于:https://www.cnblogs.com/Answer1215/p/5503847.html

你可能感兴趣的文章
mysql describe
查看>>
Hello博客园
查看>>
apache自带压力测试工具ab的使用及解析
查看>>
Android基础入门教程——8.1.2 Android中的13种Drawable
查看>>
C语言作业3
查看>>
.Net Core中的通用主机(二)——托管服务
查看>>
C#使用Xamarin开发可移植移动应用(2.Xamarin.Forms布局,本篇很长,注意)附源码
查看>>
koogra--Excel文件读取利器
查看>>
ASP.NET 使用ajaxupload.js插件出现上传较大文件失败的解决方法
查看>>
jenkins搭建
查看>>
C#中使用Split分隔字符串的技巧
查看>>
(springboot)freemarker(二)
查看>>
linux下golang gRPC配置详解
查看>>
mongodb 简单使用说明
查看>>
eclipse的调试方法的简单介绍
查看>>
OneAPM 云监控部署与试用体验
查看>>
加固linux
查看>>
wget 升级
查看>>
为什么需要大数据安全分析?
查看>>
day13.字典复习
查看>>