如何检索fs.files中的multer存储的文件?

时间:2019-06-12 11:13:27

标签: node.js mongodb

我正在尝试使用multer和gridfs获取上传的文件。我使用此代码上传文件,并且可以正常工作。

app.post('/backend/profile',upload.single('avatar'), function (req, res, next) {
response = {
message: 'File uploaded successfully',
filename: req.file.originalname
};
res.end(JSON.stringify(response));
})

在mongodb中的结果为 fs.files和fs.chunks。

Result

我想知道如何使用mongoose或mongodb获取/流式传输上传的块文件。谢谢。

0 个答案:

没有答案