gpt4 book ai didi

javascript - 使用 Workbox 启动运行时服务工作线程缓存

转载 作者:行者123 更新时间:2023-11-28 17:51:47 25 4
gpt4 key购买 nike

如何在 WorkboxSW 中使用以下代码来注册所有每个缓存 URL 的路由。这个每个缓存的 url 包含 ajax,也会发送到服务器!

$.ajax({
url : '/MyAPI/Records',
type : 'GET',
dataType:'json',
success : function(data) {
alert('Records: '+data);

//build urls array to get all records details
var urls = [];
urls.push('/MyAPI/Records')
$(data).each(function (index) {
urls.push('/MyAPI/Records/' + data[index].id + '/data')
});

//add all urls to cache
var requests = urls.map(url => new Request(url));
caches.open('my-cache').then(cache => {
return cache.addAll(requests).then(() => {
// At this point, `cache` will be populated with `Response` objects,
// and `requests` contains the `Request` objects that were used.
}).catch(error => console.error(`Oops! ${error}`));
});
},
error : function(request,error)
{
alert("Request: "+JSON.stringify(request));
}
});

最佳答案

Workbox 的预缓存依赖于在构建时访问表示资源的本地文件。这允许它生成其管理的每个资源的哈希值(基于本地文件的内容),然后在本地文件发生更改时使缓存的资源保持最新。

您的建议听起来更像是 Workbox 支持通过运行时缓存处理某些路由。您可以通过以下方式配置它:

// Replace with your actual API endpoint.
const API_URL = 'https://my-api-server.com/api/restEndpoint';

// Use whichever strategy you'd prefer: networkFirst, staleWhileRevalidate, etc.
const apiCallHandler = workboxSW.strategies.networkFirst({
cacheName: 'my-api'
});

workboxSW.registerRoute(
API_URL,
apiCallHandler
);

这将导致在运行时将来自 https://my-api-server.com 的响应添加到名为 my-api 的缓存中。第一个请求。 (在这种特殊情况下,使用 networkFirst 策略,只有在网络不可用时才会使用那些缓存的响应。)

如果您不同意运行时缓存开始“冷”并且您觉得需要启动它,那么您可以通过在 Workbox 旁边编写自己的 install 事件处理程序来做到这一点代码:

// Your existing WorkboxSW code goes here.

self.addEventListener('install', event => {
event.waitUntil(
caches.open('my-api')
.then(cache => cache.add(API_URL))
);
});

关于javascript - 使用 Workbox 启动运行时服务工作线程缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45379202/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com