gpt4 book ai didi

node.js - 下载中带有文件名的NodeJS sendFile

转载 作者:搜寻专家 更新时间:2023-10-31 22:21:50 24 4
gpt4 key购买 nike

我尝试使用以下代码将文件发送给客户端:

router.get('/get/myfile', function (req, res, next) {
res.sendFile("/other_file_name.dat");
});

它工作正常,但当用户从 url 下载此文件时我需要它:

http://mynodejssite.com/get/myfile

进入浏览器的文件名必须是“other_file_name.dat”而不是“myfile”。

最佳答案

有一个专门的方法res.download

这涵盖了所有你;)

router.get('/get/myfile', function (req, res) {
res.download("/file_in_filesystem.dat", "name_in_browsers_downloads.dat");
});

关于node.js - 下载中带有文件名的NodeJS sendFile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41941724/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com