HTML5缓存显示html文件本身没有缓存

前端之家收集整理的这篇文章主要介绍了HTML5缓存显示html文件本身没有缓存前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
index.PHP文件
<html manifest="/cache.manifest">

cache.manifest

高速缓存

CACHE:

/img.png
FALLBACK:
/ /offline.html
NETWORK:
*

一切都很好,除了index.PHP文件本身被提取为缓存(在chrome中测试).可以为指定清单的文件禁用缓存,以便仅缓存img.png?

谢谢

解决方法

不,引用清单的文件总是自己缓存.从 the spec

The resource that declares the manifest (with the manifest attribute) will always get taken from the cache,whether it is listed in the cache or not,even if it is listed in an online whitelist namespace.

原文链接:https://www.f2er.com/html5/168173.html

猜你在找的HTML5相关文章