使用multer包在node express中使用api上传图像

问题描述 投票:1回答:2

之前已经问过这个问题。但由于我未能解决我的问题,我再次提问。

我正在尝试使用multer包作为表单数据上传属性的图像,以便我可以在数据库中存储其他数据和图像路径。我正在使用node express。

我的api--

      api.post('/service', upload.single('servicesImage'),
          (req, res,  next) => {
              console.log(req.file);
              Company.find({ domain: req.headers.domain }, 
                  (err, company) => {
                     const servicecontent = new Servicecontent({
                     description: req.body.description,
                     created_at: Date.now(),
                     created_by: req.body.user_id,
                     company_domain: req.headers.domain,
                     company_uuid: company[0].uuid,
                     image: req.file.path,
                     })
                     servicecontent.save(err => {
                         console.log(err);
                     });
           res.json({ status: "success" });
           });
         });

我看了一个教程,从中我添加了这些代码来上传图像和其他选项 -

   const storage = multer.diskStorage({
      destination: function(req, file, cb){
        cb(null, './src/uploads/');
      },
      filename: function(req, file, cb){
        cb(null, new Date().toISOString()+ file.originalname);
      },
   });

   const upload = multer({storage: storage, limits:{
      fileSize: 1024*1024*5
   },
      fileFilter: fileFilter
   });

   const fileFilter = (req, file, cb) =>{
      if(file.mimetype=== 'image/jpeg' || file.mimetype=== 'image/png'){
         cb(null,true);
      }else{
         cb(null,false);
      }
   };

现在当我通过Postman发送数据和图像时,从console.log(req.file)我得到了有用的数据,正如我从教程中看到的那样。 Api响应没有任何错误,在数据库中我可以看到所有数据都存储包括图像路径。但我面临的问题是在src/upload文件夹中为空,没有上传图像。

注: - 我使用的是Linux 18.04 Os,并且无法安装fs包。所以src/upload文件夹在我发送req时没有创建,所以我从文件夹创建了这个目录。

编辑:我现在可以使用此代码上传图片,我不知道为什么这不能提前工作。如果可能的话,我应该关闭这个问题。

node.js express image-uploading multer
2个回答
1
投票

我现在可以使用此代码上传图片,我不知道为什么这不能提前工作。如果可能的话,我应该关闭这个问题。


0
投票

试试这个来存储图像。

var storage = multer.diskStorage({
   destination: function (req, file, cb) {
     cb(null, 'uploads/')

   },
   filename: function (req, file, cb) {
       console.log(file);
     cb(null, makeid(3) + file.originalname)
   }
 })

 var upload = multer({ storage: storage })
  `
© www.soinside.com 2019 - 2024. All rights reserved.