我已经基于创建了此功能 https://alligator.io/js/cache-api/(使用Cache API的第一步)。
让我总结一下我在尝试什么。
cacheName
-这是我要引用的名称(例如,我可以将其命名为“ loaddata”)
url
-是到达服务器的url,我正在尝试获取JSON中的响应
我的代码:
function AddCache(cacheName, url) {
caches.open(cacheName).then(cache => {
cache.add(url).then(() => {
console.log('cache added');
})
})
}
预期行为:
请提供帮助以实现此功能