作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要创建一个实用程序,可以通过 Flask 存储整个文件夹、文件夹或文件,目前我正在使用以下代码一次上传 1 个文件
flask 代码:
from flask import Flask, render_template, request
from werkzeug.utils import secure_filename
app = Flask(__name__)
@app.route('/')
def upload_file():
return render_template('upload.html')
@app.route('/uploader', methods = ['GET', 'POST'])
def upload_file1():
if request.method == 'POST':
f = request.files['file']
f.save(secure_filename(f.filename))
return 'file uploaded successfully'
if __name__ == '__main__':
app.run(debug = True)
html代码:
<html>
<body>
<form action = "http://localhost:5000/uploader" method = "POST"
enctype = "multipart/form-data">
<input type = "file" name = "file" />
<input type = "submit"/>
</form>
</body>
</html>
我收到以下对话框:
但这只允许我一次插入一个文件。
我需要一些可以让我上传整个目录或多个文件的东西。可以使用 Flask 来完成吗?如果没有,Python 有没有其他可用的替代方案?任何有关此事的帮助将不胜感激!
最佳答案
答案:
html 文件
<html>
<body>
<form action = "http://localhost:5000/uploader" method = "POST"
enctype = "multipart/form-data">
<input type = "file" name = "file" multiple/>
<input type = "submit"/>
</form>
</body>
</html>
在输入标记中,multiple 是允许访问多个文件的强制参数!
flask 代码:
from flask import Flask, render_template, request
#from werkzeug import secure_filename
from werkzeug.utils import secure_filename
app = Flask(__name__)
@app.route('/')
def upload_file():
return render_template('upload.html')
@app.route('/uploader', methods = ['GET', 'POST'])
def upload_file1():
if request.method == 'POST':
files = request.files.getlist("file")
for file in files:
file.save(secure_filename(file.filename))
return 'file uploaded successfully'
if __name__ == '__main__':
app.run(debug = True)
使用flask.request.getlist获取目录中的文件列表。要处理多个文件,只需使用循环来管理它们,如上所示。
关于python - 通过 Flask 上传多个文件或整个文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60167773/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!