gpt4 book ai didi

python - Flask 静态文件 Cache-Control

转载 作者:IT老高 更新时间:2023-10-28 21:05:18 25 4
gpt4 key购买 nike

我正在尝试在开发过程中为我的 JS 文件设置一个合理的缓存过期时间。我有标准设置,其中 HTML、CSS 和 JS 位于 static 目录下。

docs确实提到这一点,但对于我的生活,我无法让它发挥作用。我已经尝试了两种隐含的方法,首先

class MyFlask(flask.Flask):
def get_send_file_max_age(self, name):
if name.lower().endswith('.js'):
return 60
return flask.Flask.get_send_file_max_age(self, name)

app = MyFlask(__name__)

app.config['SEND_FILE_MAX_AGE_DEFAULT'] = 60

两者都没有效果,我/static 下的 JS 文件仍然以默认的缓存超时返回,

Cache-Control: public, max-age=43200

任何指针表示赞赏。

最佳答案

您可能想查看 webassets管理缓存过期。它适用于开发和生产环境。

关于python - Flask 静态文件 Cache-Control,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11356188/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com