默认情况下,Tornado会在Cache-Control: public
提供的任何文件上放置StaticFileHandler
标头。如何将其更改为Cache-Control: no-cache
?
答案 0 :(得分:41)
接受的答案对Chrome不起作用。子类StaticFileHandler
使用以下内容:
class MyStaticFileHandler(tornado.web.StaticFileHandler):
def set_extra_headers(self, path):
# Disable cache
self.set_header('Cache-Control', 'no-store, no-cache, must-revalidate, max-age=0')
答案 1 :(得分:13)
查看tornado / web.py似乎最简单的方法是对StaticFileHandler进行子类化并覆盖set_extra_headers方法。
def set_extra_headers(self, path):
self.set_header("Cache-control", "no-cache")