我使用燒瓶來開發webapp,並且我有兩個不同的文件可以上傳到兩個不同的位置,並且只要我通過互聯網搜索,我只能找到解釋來上傳一個或多個在一起在一個文件字段中,它工作正常。在兩個不同的字段中上傳兩個不同的文件
這裏是我用來上傳一個文件的代碼:
app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER
def allowed_file(filename):
return '.' in filename and \
filename.rsplit('.', 1)[1] in ALLOWED_EXTENSIONS
@app.route("/", methods=['GET', 'POST'])
def index():
if request.method == 'POST':
file = request.files['file']
if file > 0:
filename = secure_filename(file.filename)
file.save(os.path.join(UPLOAD_FOLDER , filename))
return redirect(url_for('index'))
有人可以幫助我與
我做你的建議,但它不工作:)。 – muteb