gpt4 book ai didi

Python Flask 不更新图像

转载 作者:太空狗 更新时间:2023-10-29 15:59:01 24 4
gpt4 key购买 nike

<分区>

这里有一些关于图像的 Flask 问题,但没有一个能解决我的问题。我有一个应用程序可以创建图像,保存它,然后显示它。一次。它应该多次执行此操作(每次更改图像时都应该加载新图像)。它不是;它只显示与其显示的文件名关联的第一张图像。这些文件不再位于静态文件夹中,而是显示在应用程序中。

创建图像,并通过以下方式保存到静态文件夹的子文件夹中:

img.save('../source/static/images/characters/{}.png'
.format(self.char.name), "PNG")

应用通过以下方式加载它:

'<img src="/static/images/characters/{}.png" '
.format(self.name) +
' alt="{}" title="{}" '.format(self.name, self.name) +
'width=100% />'

(通过代码操作添加到 Flask 应用程序)。

问题是我有两个测试用例:一个是图像上出现文本(添加的文本在代码的几次迭代前被删除),另一个是 alpha channel 在错误的位置(RGBA -> ARGB 问题,已解决,除了我在网站上看不到新文件)。截至目前,仅在本地运行/测试。正确的图片出现在 ~\source\static\images\characters 中。所有 *.py 文件都在源代码中。我需要做什么才能解决这个问题?

我试过:

@app.after_request
def add_header(response):
"""
Add headers to both force latest IE rendering engine or Chrome Frame,
and also to cache the rendered page for 10 minutes.
"""
response.headers['X-UA-Compatible'] = 'IE=Edge,chrome=1'
response.headers['Cache-Control'] = 'public, max-age=0'
return response

作为我的 app.py 文件末尾的一段单独的代码,还尝试添加:

app.config["CACHE_TYPE"] = "null"

到调用创建图像的页面的 app.route() 的开头。

在一个可能的单独注释中,图像应该在表格中,但似乎不是...我的意思是,有一个带有标题的表格,然后是一个列中的表格,另一个列中的图像。 .. 但第一列的文本位于图像下方(尽管每个文本都在其适当的位置)。奇怪,但可能无关。

那么,为什么 flask 不能正常更新,我该如何强制它更新呢? (关闭程序并重新打开时问题仍然存在)。

更新:似乎有效...

Using Flask, how do I modify the Cache-Control header for ALL output?

是通过添加:

app = Flask(__name__)
app.config['SEND_FILE_MAX_AGE_DEFAULT'] = 1

到顶部(包括 app = Flask 部分以帮助其他新手)和最后:

# No caching at all for API endpoints.
@app.after_request
def add_header(response):
# response.cache_control.no_store = True
if 'Cache-Control' not in response.headers:
response.headers['Cache-Control'] = 'no-store'
return response

但只对单个实例有效,其他实例仍然有奇怪的缓存。可以从之前缓存而另一个刚刚超时,但由于我一直关闭服务器(本地主机),所以不应该发生这种情况,对吧?

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