我有一个奇怪的案子。 我在Mac OS上使用chrome 75。
当我在控制台的某些页面中推送代码
if ('caches' in window) {
console.log(`cache is supported`)
}else{
console.log(`cache is not supported`)
}
作为结果,我看到了支持,但是我在vue的8080上有本地服务器。当我在那里调用它时,返回该缓存不存在。 当我将vue cli代码导出为生产时,窗口中不支持仍然缓存。 有什么想法吗?预先感谢您的任何提示。