Flask:通过 post 获取图像
Flask: get image via post
你好我有以下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
我不知道这意味着什么,也不知道为什么会这样。有什么想法吗?
更改此行:
imagefile = flask.request.files('imagefile', '')
至:
imagefile = flask.request.files.get('imagefile', '')
你好我有以下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
我不知道这意味着什么,也不知道为什么会这样。有什么想法吗?
更改此行:
imagefile = flask.request.files('imagefile', '')
至:
imagefile = flask.request.files.get('imagefile', '')