我想以reform形式保存图像,并使用flask发送到python以将其保存在mysql中 但我不知道这是否可行,或者我必须在mysql中使用的变量类型是什么
那是我的反应代码
const formData = new FormData();
formData.append('file', this.state.img)
await fetch(`http://localhost:80/upload`, {
method: 'POST',
body: formData,
contentType: false,
processData: false
});
那是python中的代码
@app.route('/upload', methods=['POST'])
def fileUpload():
try:
data = request.files['file']
data.save( 'prueba.jpg')
return "hello",202
except:
return "Error al guardar imagen",500
我的问题是如何在mysql中保存变量数据