我正在尝试从 html 表单中获取此图像并将其存储在数据库中。我不确定我做错了什么。我希望能够将图像保存在数据库的 blob 字段中。查看我的代码。我正在使用烧瓶。这里的问题是,我无法将图像存储在数据库中。
@app.route('/upload', methods=["POST"])
def get_images():
if request.method == "POST":
file = request.files['imagename']
file.save(file.filename)
newFile = file.read()
c, conn = connection()
c.execute('''
INSERT INTO ImageTable( PHT_Image)
VALUES(%s)''',
[newFile1])
conn.commit()