0

首先,我将图像文件从 android 发送到 node.js,我想使用 node.js 将图像文件保存到数据库。

但我不知道该怎么做。

这是我的 Node.js 代码

.post('/picture', upload.single('files'), (req,res)=>{
    res.json(req.file)
    console.log(req.body)
    console.log(req.file)
})

这是结果req.file

fieldname: 'files',
originalname: 'CHOIHYOGIL.png',
encoding: '7bit',
mimetype: 'image/png',
destination: 'images/',
filename: 'c98531598c04abda7e936ef310b147e9',
path: 'images\\c98531598c04abda7e936ef310b147e9',
size: 1372912

我想将此图像保存到我的 MySQL 数据库中。

4

1 回答 1

0

您可以将文件保存在本地并将文件目录存储在表中。

于 2020-07-01T06:02:40.600 回答