nodejs

2016-12-21 10 views
0

とgridfsからの表示画像Iは、画像を格納するためのAPIの帆とモンゴを使用し、側フロントnodeJs Iは、単に1枚の画像、Xイメージをダウンロードしたい、コードが機能的である:ダウンロードXイメージについてnodejs

db.open(function(){ 
    gfs.exist({ _id: id }, function(err, found) { 
     if (err) { 
      return err.negotiate(err); 
     } 

     if (!found) { 
      return res.negotiate('No file found'); 
     } 

     gfs.createReadStream({ _id: id }).pipe(res); 
    }); 
}); 

......何のアイデア....

答えて

1
i am doing it by using this 



    if (fileExists(image_name) == false) { //check the file exist or not 
     var file = fs.createWriteStream(image_name); 
         http.get(url, function (response) { 
           response.pipe(file); 
    })else{ 
    console.log('already exist.'); 
    } 
    }); 

はこれが役に立てば幸いご協力いただきありがとうございません。