mongo图像转换器
该软件包可帮助您将需要上传的图像文件转换为mongoDB((无))GRIDfs或MULTER
安装
npm我-保存mongo-image-converter
有关与MONGOOSE一起使用的注意事项
如果您需要将大于(16mb)的文件存储到MongoDB,请随时使用Grid-fs
请使用中间件“ body-parser”!
确保在组件内部转换图像,然后将其作为字符串传递给后端
示例:(在Node JS server.js文件中)
const express = require('express');
const app = express();
const bodyParser = require('body-parser')
app.use(bodyParser.json({limit: '16mb', extended: true})); // Make sure you add these two lines
app.use(bodyParser.urlencoded({limit: '16mb', ext
1