請求頭:referer,響應頭:狀態行、refresh、Content-Disposition、頁面緩存瀏覽器
'Content-Disposition': 'attachment; filename='
,瀏覽器則不會渲染該內容,而是下載文件。Content-Disposition filename能夠指定路徑和文件名
二、content-type設置爲application/octet-stream的話,那就意味着你不想直接顯示內容,而是彈出一個文件下載的對話框,文件名爲當前接口名let _path = path.resolve(__dirname, 'e-router'+'.js') let stats=fs.statSync(_path) if(stats.isFile()){ res.set({ 'Content-Type': 'application/octet-stream', 'Content-Disposition': 'attachment; filename=' + 'e-router'+'.js', 'Content-Length': stats.size }); fs.createReadStream(_path).pipe(res); }else{ console.log('導出的不是文件!') }
res.download(_path,function(err){ if(err){ console.log(err); } });