我正在学习Udacity的服务工作者,他们正在使用nodejs后端来处理服务工作者。有没有办法在Laravel框架中使用相同的方法。我曾尝试过一次,但我不知道如何将已编译的html,css和js存储在缓存中。谁能帮我?谢谢
答案 0 :(得分:1)
您不必使用nodejs来与服务工作者一起工作。只需在app.js
中的某处注册工作人员,然后在单独的文件(例如install
)中使用fetch
和sw.js
事件来干预Http请求:
// app.js
navigator.serviceWorker.register('sw.js', {
scope: './'
});
// sw.js
// fetch
self.addEventListener('fetch', function(event) {
event.respondWith(
caches.match(event.request).then(function(response) {
return response || fetch(event.request);
})
);
});