在html页头设置不缓存
Posted 成大大
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在html页头设置不缓存相关的知识,希望对你有一定的参考价值。
方法一:在<head>标签里增加如下meta标签。
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=8">
<meta http-equiv="Expires" content="0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Cache" content="no-cache">
方法二:在java代码中增加如下代码。
response.setHeader("Cache-Control","no-cache");
response.setHeader("Pragma","no-cache");
response.setDateHeader("Expires",0);
以上是关于在html页头设置不缓存的主要内容,如果未能解决你的问题,请参考以下文章