gpt4 book ai didi

python - Flask:通过post获取图像

转载 作者:行者123 更新时间:2023-12-03 02:19:36 25 4
gpt4 key购买 nike

嗨,我有以下 html

<form action="classify_upload" method="post" id="upload-form">
<input type="file" name="imagefile" id="imagefile"/>
<input type="submit" />
</form>

在我的 flask web 应用程序中,我有以下规则:

@webapp.route('/upload', methods=['POST'])
def upload():
try:
imagefile = flask.request.files('imagefile', '')
...
except Exception as err:
...

但这给了我以下异常

'ImmutableMultiDict' object is not callable

我不知道这意味着什么或为什么会发生。有什么想法吗?

最佳答案

更改此行:

imagefile = flask.request.files('imagefile', '')

至:

imagefile = flask.request.files.get('imagefile', '')

关于python - Flask:通过post获取图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28027472/

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