gpt4 book ai didi

javascript - window.open缓存问题

转载 作者:行者123 更新时间:2023-11-28 03:55:17 25 4
gpt4 key购买 nike

我在一个函数中使用 window.open 打开一个网页,它显示了帮助当前页面。

页面URL存储在数据库中,部分页面需要认证。

对于这些页面,我们第一次调用它们时用户必须进行身份验证,但如果他关闭页面并再次打开它,则会显示缓存页面。

我尝试将时间添加到url,以便不显示缓存页面

var oDate = new Date();
window.open(url+oDate.getTime());

但浏览器仍然显示缓存的 url。

有解决这个问题的想法吗?

谢谢。

最佳答案

您可能想尝试将元标记显式添加到您的页面:

<!-- HTTP 1.1 -->
<meta http-equiv="Cache-Control" content="no-store"/>
<!-- HTTP 1.0 -->
<meta http-equiv="Pragma" content="no-cache"/>
<!-- Prevents caching at the Proxy Server -->
<meta http-equiv="Expires" content="0"/>

关于javascript - window.open缓存问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3627163/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com