Download a file from NodeJS Server using Express

后端 未结 7 1600
醉梦人生
醉梦人生 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:35

    In Express 4.x, there is an attachment() method to Response:

    res.attachment();
    // Content-Disposition: attachment
    
    res.attachment('path/to/logo.png');
    // Content-Disposition: attachment; filename="logo.png"
    // Content-Type: image/png
    

提交回复
热议问题