Django - http代码304,如何在测试服务器中解决?
我有一个生成 http 304 的 CSS 代码:
[08/Nov/2011 15:22:07] "GET /site_media/logo1.gif HTTP/1.1" 304 0
如何使用 Django 测试服务器获得解决方法?有什么线索吗?
此致,
I have a CSS code that generates http 304:
[08/Nov/2011 15:22:07] "GET /site_media/logo1.gif HTTP/1.1" 304 0
How can I get a workaround using the Django test server? Any clues?
Best Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
304
代码不是错误。您不需要解决方法。它只是意味着自您的浏览器上次访问以来静态文件没有更改有关更多信息,请参阅维基百科解释3xx 状态代码。
The
304
code is not an error. You don't need a workaround. It simply means that the static file has not changed since your browser last accessed itFor more information see the Wikipedia explanation of 3xx status codes.
如果您更改的文件出现 304 错误,您可以通过在浏览器的开发工具中选中“禁用缓存”来强制在浏览器中重新加载(在 Chrome/ium 上,右键单击网页 -> 检查元素 -> 转到网络选项卡 -> 禁用缓存)
If you're getting 304 with files you did change, you can force reloading in your browser by checking "Disable cache" in your browser's dev tools (on Chrome/ium, right click on webpage -> inspect element -> go to network tab -> disable cache)