1

i've already be added the following lines to prevent caching, the contents is display within a iframe

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-Equiv="Cache-Control" Content="no-cache">
    <meta http-Equiv="Pragma" Content="no-cache">
    <meta http-Equiv="Expires" Content="0">

But it has no effect, any ideas?

4

2 に答える 2

2

HTTP ヘッダーはすべてのキャッシュで監視される可能性が高いため、キャッシュを制御するために常に HTTP ヘッダーを使用するようにしています。そうは言っても、これをhtmlに設定する必要がある場合は、次のことをお勧めします。

<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
于 2013-01-18T07:33:52.253 に答える