首页 >

html5 application cache遇到的严重问题

web前端|H5教程

html5 application cache遇到的严重问题

application,cache
web前端-H5教程
在我们的3G版网站的项目中使用了html5 application cache,将大部分图片资源、js、css等静态资源放在manifest文件中,需要了解的朋友可以参考下
在我们的3G版网站的项目中使用了html5 application cache,将大部分图片资源、js、css等静态资源放在manifest文件中。
自媒体平台 源码,ubuntu突然关机重启,tomcat运行一阵就卡,郑州有爬虫馆,PHP中常用的运算符,美国seo招聘lzw
没想到上线第一天就遇到了严重问题:application cache会默认缓存当前页面!!!就算我们有如下设置:
快播播放器源码,vscode调试 asp,ubuntu应用商店无法联网,java 写tomcat,sqlite 建表 日期,php 定时发布文章插件,乾坤微前端框架卸载,东北家里爬虫图片,php json转,淘宝客怎么做seo,网站源码 红色主题,生日祝福网页源代码,jq影视html网站模板,discuz的文章页面模板源码在,科技狗一元云购管理系统,快乐域名二级分发程序lzw
代码如下:
源码技术网,vscode电脑很漫,ubuntu打中文,tomcat 映射机制,sqlite3 id重置,爬虫有自我意识吗吗,html 运行php,seo新手职位分类,网站首页html模板,网页咨询特效,系统部署手册模板lzw
NETWORK:*

也就是说,对于所有的动态页面,application cache会缓存起来,用户怎么刷新都是老的!

而且手机浏览器还很难清除掉,也不支持js清除!

花了一个上午,尝试了很多办法,查了很多资料,都没能清除掉客户端的缓存。一上午被用户投诉惨了。

最后还是万能的stackoverflow救了我:

Do not use appcache unless it is REALLY 100% EXACTLY WHAT YOU WANT TO DO
Even if it IS 100% EXACTLY WHAT YOU WANT TO DO, *DO NOT* use appcache until you are 100% CERTAIN that you are not going to make a single change to that page (or any file that it links to) for a LONG time.
Delete the manifest file from the server — if the browser can’t find the manifest file, then it will clear its cache… …this will also turn caching off for everyone.
Don’t turn it on again until it’s 100% CORRECT
Dealing with appcache is miserable, often.
解决办法很简单,在服务器端删除掉manifest文件,并且慎用application cache

当然,也有办法是用application cache,同时能绕过自动缓存当前页面的问题。那就是用iframe

更多相关教学请访问 Html5视频教学


  • 暂无相关文章