res.attachment()

res.attachment([filename])

Sets the HTTP response Content-Disposition header field to “attachment”. If a filename is given, then it sets the Content-Type based on the extension name via res.type(), and sets the Content-Disposition “filename=” parameter.

1
2
3
4
5
6
res.attachment();
// Content-Disposition: attachment
 
res.attachment('path/to/logo.png');
// Content-Disposition: attachment; filename="logo.png"
// Content-Type: image/png
doc_Express
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.