网页不显示新文件内容
我正在尝试从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两种方法:
将其放在 HTTP 响应标头中,而不是放在 HTML 标头中。仅当从本地磁盘文件系统打开文件时才解释元标记,而不是通过 HTTP 获取文件时解释元标记。
Filter
是完成这项工作的完美工具。另外,您还忘记了另外两个Cache-Control
设置。这是完整的集合:将此
过滤器
映射到与 HTML 文件匹配的所需 URL 模式上。在查询字符串中添加时间戳,以便欺骗浏览器缓存。
Two ways:
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 moreCache-Control
settings. Here's a complete set:Map this
Filter
on the desired URL pattern matching the HTML file.Add a timestamp to the query string so that the browser cache is fooled.