nodejs display image stored in gridFS to html

前端 未结 3 1380
醉酒成梦
醉酒成梦 2021-01-16 07:29

Hi I\'m new to nodejs and gridFS I\'m trying to display images stored in gridFS to my html page

Currently, I am using this code.

gfs.exist(options, f         


        
3条回答
  •  情歌与酒
    2021-01-16 07:59

             var pi_id   =  fields.pic_id;
    
             gfs.findOne({ _id: pi_id }, function (err, file) {
                        console.log(file);
                        if (err) return res.status(400).send(err);
                        if (!file) return res.status(404).send('');
    
                        res.set('Content-Type', file.contentType);
                        res.set('Content-Disposition', 'attachment; filename="' + file.filename + '"');
    
                        var readstream = gfs.createReadStream({
                          _id: file._id
                        });
    
                        readstream.on("error", function(err) {
                          console.log("Got error while processing stream " + err.message);
                          res.end();
                        });
    
                        readstream.pipe(res);
    
                        console.log(readstream.pipe(res))
                      });   
    

提交回复
热议问题