26

デフォルトでは、Tornado はCache-Control: publicStaticFileHandler. これをどのように変更できCache-Control: no-cacheますか?

4

2 に答える 2

16

tornado/web.py を見ると、最も簡単な方法は StaticFileHandler をサブクラス化し、set_extra_headers メソッドをオーバーライドすることです。

def set_extra_headers(self, path):
    self.set_header("Cache-control", "no-cache")
于 2012-08-20T00:40:01.603 に答える