页面后退时强制刷新页面方法
Posted 懦酷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了页面后退时强制刷新页面方法相关的知识,希望对你有一定的参考价值。
1、
response设置
response.setHeader
各种不缓存的header头。
( "Pragma", "no-cache" );
( "Cache-Control", "must-revalidate" );
( "Cache-Control", "no-cache" );
( "Cache-Control", "no-store" );
1、页面head设置
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="0">
以上是关于页面后退时强制刷新页面方法的主要内容,如果未能解决你的问题,请参考以下文章