mongodb 用于存储文档的目录文件夹

dgtucam1  于 2022-11-22  发布在  Go
关注(0)|答案(1)|浏览(109)

我正在尝试使用nodejs,mongodb和react来制作文档管理项目。我想制作一个目录文件夹来存储文档,子文件夹是它的文件。但是我找不到任何可以用来开始制作目录的参考。有没有什么特定的术语,我应该搜索来获得任何参考来开始项目?谢谢。

aiazj4mn

aiazj4mn1#

你可以使用Multer库来上传文件。它超级容易使用。

import multer from 'multer';

//specify where you want your files to be stored
var fileStorageEngine = multer.diskStorage({
    destination: function (req, file, cb) {
        cb(null, './images')
    },
    filename: function (req, file, cb) {
        cb(null, Date.now() + '--' + file.originalname)
    }
})
var upload = multer({ storage: fileStorageEngine });

//pass it as a middleware to a route where you expect to get a file upload
app.use('/api/file/', upload.single('image'), someRouterHere);

相关问题