我对nodejs
有疑问。我现在正在制作一台服务器,用于提供用户请求的文件。我做了什么:
fs.exists()
)现在的问题是我希望用户下载文件,但是如果我写一个.txt文件,管道方法会在浏览器中写入文件的内容......所以,我尝试了.pdf,但在这种情况下,网页继续加载,什么也没发生......有人可以帮忙吗?
if(exists) {
response.writeHead(302, {"Content-type":'text/plain'});
var stat = fs.statSync(pathname);
if(stat.isFile()) {
var stream = fs.createReadStream(pathname);
stream.pipe(response);
} else {
response.writeHead(404, {"Content-type":'text/plain'});
response.end()
}
//response.end();
} else {
response.writeHead(404, {"Content-type":'text/plain'});
response.write("Not Found");
response.end()
}
答案 0 :(得分:1)
嗯,在if
案例中,您始终将Content-Type
标题设置为text/plain
,这就是您的浏览器内嵌显示文本文件的原因。对于您的PDF,text/plain
只是错误的,它应该是application/pdf
,因此您需要动态设置类型。
如果您希望浏览器强制执行下载,请设置以下标题:
Content-Disposition: attachment; filename="your filename…"
Content-Type: text/plain (or whatever your content-type is…)
基本上,这就是Express's res.download函数在内部的作用,所以这个函数也值得一看。
答案 1 :(得分:1)
好吧,看起来问题是pdf内容类型不是text/plain
。
将内容类型替换为application/pdf
像:
response.writeHead(302, {"Content-type":'application/pdf'});
此处有更多信息:http://www.iana.org/assignments/media-types和http://www.rfc-editor.org/rfc/rfc3778.txt