所有PDF文件都保存在服务器上的文件系统中,如何在客户端下载文件。
代表:
app.use('/pdfDownload', function(req, res){
var pathToTheFile = req.body.fileName;
readFile(pathToTheFile, function(data){
//code to make the data to be downloadable;
});
});
是提出的请求
function readFile(pathToTheFile, cb){
var fs = require('fs');
fs.readFile(pathToTheFile, function(err, data){
//how to make the file fetched to be downloadable in the client requested
//cb(data);
});
}
答案 0 :(得分:6)
您可以使用express.static
,在应用中尽早设置:
app.use('/pdf', express.static(__dirname + '/pathToPDF'));
当浏览器导航到例如,它将自动为您完成工作。 '/pdf/fooBar.pdf'。