烧瓶:通过邮寄获取图像

时间:2015-01-19 14:58:27

标签: python image upload flask

您好我有以下HTML

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

在我的flask网络应用中,我有以下规则:

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

但这给了我以下例外

'ImmutableMultiDict' object is not callable

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

1 个答案:

答案 0 :(得分:3)

更改此行:

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

为:

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