作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有以下内容
<form action="classify_upload" method="post" id="upload-form">
<input type="file" name="imagefile" id="imagefile"/>
<input type="submit" />
</form>
在我的 flask webapp 中,我有以下规则:
@webapp.route('/upload', methods=['POST'])
def upload():
try:
imagefile = flask.request.files['imagefile']
...
except Exception as err:
...
但我收到了一个错误 400:错误请求
,根据我的谷歌搜索,这告诉我 Flask 无法找到键 'imagefile'
下的文件,这是名称html中的输入。有什么想法为什么找不到它吗?
最佳答案
原来我需要在表单中包含 enctype
,所以 html 应该是
<form action="classify_upload" method="post" id="upload-form" enctype="multipart/form-data">
<input type="file" name="imagefile" id="imagefile"/>
<input type="submit" />
</form>
关于python - Flask 在文件上传时给出错误 400,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28029467/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!