Download a file from NodeJS Server using Express

后端 未结 7 1690
醉梦人生
醉梦人生 2020-11-22 03:10

How can I download a file that is in my server to my machine accessing a page in a nodeJS server?

I\'m using the ExpressJS and I\'ve been trying this:



        
7条回答
  •  醉梦人生
    2020-11-22 03:30

    There are several ways to do it This is the better way

    res.download('/report-12345.pdf')
    

    or in your case this might be

    app.get('/download', function(req, res){
      const file = `${__dirname}/upload-folder/dramaticpenguin.MOV`;
      res.download(file); // Set disposition and send it.
    });
    

    Know More

提交回复
热议问题