node/express Force browser to download file with custom name

前端 未结 2 1453
旧时难觅i
旧时难觅i 2021-01-19 04:22

I\'ve built a node/express website for my university project that, after searching for an ID of a law, it shows a big table with all files in different formats and languages

2条回答
  •  温柔的废话
    2021-01-19 04:47

    In Express 4 and later, there are 2 helper functions to change the content-type and specify attachment disposition:

    res.type("application/octet-stream");
    res.attachment("filename.ext");
    

    See docs for type and attachment.

提交回复
热议问题