如何保存“ fs.createReadStream”中使用的图像?

时间:2019-01-10 19:32:05

标签: node.js image multer body-parser

我正在尝试使用通过html获取的图像将其发送到我的Node.JS

在我的HTML中,我有以下代码:

<form action="/upload" method="POST" enctype="multipart/form-data"> <input type="file" name="image" id="image"> <button type="submit" class="btn">Submit</button> </form>

为此,我上传了一张图片。

在我的Node.JS中,我需要在以下代码中使用该图像:

var file = fs.createReadStream('./public/images/example.jpg')

如何用通过HTML获得的图像替换'./public/images/example.jpg'

我现在正在使用multer,但我不知道该怎么做。

app.post('/upload', upload.single('image'), function(req, res, next){ // });

谢谢

0 个答案:

没有答案