s
app.py
import os
from flask import Flask, render_template, request from flask_dropzone import Dropzone
basedir = os.path.abspath(os.path.dirname(file))
app = Flask(name)
app.config.update( UPLOADED_PATH=os.path.join(basedir, 'uploads'), # Flask-Dropzone config: DROPZONE_ALLOWED_FILE_TYPE='image', DROPZONE_MAX_FILE_SIZE=3, DROPZONE_MAX_FILES=20, DROPZONE_UPLOAD_ON_CLICK=True )
dropzone = Dropzone(app)
@app.route('/', methods=['POST', 'GET']) def upload(): if request.method == 'POST': for key, f in request.files.items(): if key.startswith('file'): f.save(os.path.join(app.config['UPLOADED_PATH'], f.filename)) return render_template('index.html')
if name == 'main': app.run(debug=True)
index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Flask-Dropzone Demo: Click Upload</title> {{ dropzone.load_css() }} {{ dropzone.style('border: 2px dashed #0087F7; margin: 10px 0 10px; min-height: 400px;') }} </head> <body> {{ dropzone.create('/') }} <button id="upload">Upload</button>
{{ dropzone.load_js() }} {{ dropzone.config() }} </body> </html>