对于flask Web应用程序,我知道我无法多次从request.files中读取“文件”,因为它是流。因此,当我阅读一次后,我将其清空。但是我需要多次使用“文件”而不将其保存在本地,因此我在执行时遇到了麻烦。
例如,从这里
image = request.files["image"]
我想要类似的东西
image2 = image.copy
,然后对image和image2执行不同的操作。
有人可以帮我吗?
答案 0 :(得分:0)
image = request.files["image"]
# Seek the pointer to the beginning of the file to read again
request.files["image"].seek(0)