我有以下烧瓶路线,它提供静态内容:
@app.route('/static/<path:path>')
@resourceDecorator
def getStaticFile(path):
return send_from_directory('static', path)
@resourceDecorator
宣布如下:
def resourceDecorator(f):
def new_func(*args, **kwargs):
resp = make_response(f(*args, **kwargs))
resp.cache_control.no_cache = True # Turn off caching
resp.headers['Access-Control-Allow-Origin'] = '*' # Add header to allow CORS
return resp
return update_wrapper(new_func, f)
装饰器设置标头以停用缓存并允许跨域访问。这适用于我的其他“常规”路由,但通过静态路由发送的文件似乎没有设置其标头。
这里出了什么问题?
对于静态文件,flask将默认缓存超时设置为12小时/ 43200秒,因此您的问题。您可以通过直接传递send_from_directory
值来更改cache_timeout
中的默认缓存超时,因为它使用send_file
函数将文件发送到客户端。
send_from_directory(cache_timeout=0)
或者你可以覆盖get_send_file_max_age
。