gpt4 book ai didi

python - 使用 flask-dropzone 上传文件返回 'Server error: 0'

转载 作者:行者123 更新时间:2023-12-03 16:58:39 25 4
gpt4 key购买 nike

<分区>

我正在尝试使用 Dropzone JS 和 Flask 后端将文件上传到本地主机。我通过pip安装了flask-dropzone模块,并成功初始化了dropzone。这意味着前端一切正常,我能够看到拖放区、正在上传的文件和动画。

但是,当我拖放任何文件时,我收到一条 Server error: 0 消息。因此,我的文件没有保存到我的 uploads 文件夹中。有人可以看看我的代码并给我一些建议吗?

这是我的文件夹结构:

newApp
-templates
-home.html
-static
-uploads
-app.py

这是我的 app.py:

import os
from flask import Flask, render_template, request, redirect, url_for
from werkzeug.utils import secure_filename
import MySQLdb
from flask_dropzone import Dropzone

app = Flask(__name__)

dropzone = Dropzone(app)

db = MySQLdb.connect(host="localhost",
user="root",
passwd="myPassword",
db="myDbName")

@app.route('/', methods=['GET', 'POST'])

def home():
cur = db.cursor()

cur.execute('SELECT * FROM users')

users = cur.fetchall()

for row in users:
return render_template('home.html', users=users)

db.close()

def index():
return render_template('layout.html')

def upload():
if request.method == 'POST':
f = request.files.get('file')
f.save(os.path.join('/uploads', f.filename))

if __name__ == '__main__':
app.run(debug=True)

还有我的 home.html 模板:

<h4>Users</h4>

{{ dropzone.load() }}

{{ dropzone.create(action_view='home') }}

{{ dropzone.style('border: 2px dashed #0087F7; margin: 10%; min-height: 400px;') }}

{% for user in users %}

<p>{{user[2]}}</p>

{% endfor %}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com