网页不显示新文件内容

发布于 2024-10-21 00:03:40 字数 827 浏览 0 评论 0原文

我正在尝试从 jsp 文件加载 html 页面。像这样。我将文件名从控制器提供给 jsp,并使用 dojo 调用另一个控制器并传递文件名。

<script type="text/javascript">
var url = dojo.moduleUrl("dijit.form", "<c:url value="/getfile?Name=${fileName}"/>");
    dojo.xhrGet({
    url: url,
    load: function(html){
        dojo.byId("mycontent").innerHTML = html;
    }
});

它将文件内容流式传输到 jsp。 我的问题是当我更改文件内容时它没有反映。对于 Firefox,我必须使用 Ctrl+f5,对于 IE,我必须手动清除缓存。 我怎样才能避免这种情况? 我已经

<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"/>

在我的jsp文件和html文件中给出了。

I'm trying to load an html page from a jsp file. like this. I give the file name to the jsp from a controller and using dojo I call another controller and pass the file name.

<script type="text/javascript">
var url = dojo.moduleUrl("dijit.form", "<c:url value="/getfile?Name=${fileName}"/>");
    dojo.xhrGet({
    url: url,
    load: function(html){
        dojo.byId("mycontent").innerHTML = html;
    }
});

It streams the file contents to the jsp.
My problem is when I change the contents of the file it is not reflecting. For firefox I have to use Ctrl+f5 and for IE I've to clear the cache manually.
How can I avoid this?
I've given

<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"/>

in my the jsp files and html file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

多情出卖 2024-10-28 00:03:40

两种方法:

  1. 将其放在 HTTP 响应标头中,而不是放在 HTML 标头中。仅当从本地磁盘文件系统打开文件时才解释元标记,而不是通过 HTTP 获取文件时解释元标记。 Filter 是完成这项工作的完美工具。另外,您还忘记了另外两个 Cache-Control 设置。这是完整的集合:

    HttpServletResponse hsr = (HttpServletResponse) 响应;
    hsr.setHeader("Cache-Control", "无缓存,无存储,必须重新验证"); // HTTP 1.1。
    hsr.setHeader("Pragma", "无缓存"); // HTTP 1.0。
    hsr.setDateHeader("过期", 0); // 代理。
    chain.doFilter(请求,响应);
    

    将此过滤器映射到与 HTML 文件匹配的所需 URL 模式上。

  2. 在查询字符串中添加时间戳,以便欺骗浏览器缓存。

    var url = dojo.moduleUrl("dijit.form", "&" + new Date().获取时间());
    

Two ways:

  1. Put it in the HTTP response headers, not in the HTML head. The meta tags are only interpreted when the file is opened from local disk file system, not when the file is obtained by HTTP. A Filter is a perfect tool for the job. Plus, you forgot two more Cache-Control settings. Here's a complete set:

    HttpServletResponse hsr = (HttpServletResponse) response;
    hsr.setHeader("Cache-Control", "no-cache, no-store, must-revalidate"); // HTTP 1.1.
    hsr.setHeader("Pragma", "no-cache"); // HTTP 1.0.
    hsr.setDateHeader("Expires", 0); // Proxies.
    chain.doFilter(request, response);
    

    Map this Filter on the desired URL pattern matching the HTML file.

  2. Add a timestamp to the query string so that the browser cache is fooled.

    var url = dojo.moduleUrl("dijit.form", "<c:url value="/getfile?Name=${fileName}"/>&" + new Date().getTime());
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文