由于我没有在标头响应上添加任何max-age而得分低Leverage browser caching
,因此我在Python Flask中有这个:
@app.after_request
def add_header(response):
response.cache_control.max_age = 86400
return response
网站的标题回复:
Cache-Control max-age=86400
但是所有静态文件仍然有max-age=0
。我在Python Flask上阅读了关于Webassets的内容,但我不知道如何使用它,因为我没有找到使所有静态文件具有相同缓存控制的教程。我怎样才能继续像我对页面那样做?