2017-08-15 58 views
-1

我有網址:http://localhost:9999/file/bongda.PNG下載文件2

我使用的NodeJS服務於公衆的文件:

application.use(express.static(path.join(__dirname, 'uploads'))); 

application.get('/file/:name', function (req, res, next) { 

    var options = { 
    root: __dirname + '/uploads/', 
    dotfiles: 'deny', 


    headers: { 
     'x-timestamp': Date.now(), 
     'x-sent': true 
    } 
    }; 
    console.log('Express server listening downloads '); 
    var fileName = req.params.name; 
    res.type('png'); 
    res.sendFile(fileName, options, function (err) { 
    if (err) { 
     next(err); 
    } else { 
     console.log('Sent:', fileName); 
    } 
    }); 

}); 

我想從URL

下載文件

我使用<a href="window.location.href='http://localhost:9999/file/bongda.PNG'">123123</a>

<a href="http://localhost:9999/file/bongda.PNG">123123</a> 

但它不成功。 請幫我嗎?

+0

有什麼錯誤信息? – Adam

+0

無信息丟 – user3089993

+0

http://imgur.com/a/1csrt – user3089993

回答

0

你已經錯過了javascript:從HREF:

<a href="javascript:window.location.href='http://localhost:9999/file/bongda.PNG'">123123</a> 

如果您想強制瀏覽器下載文件,而不是打開它,下面的行應添加到您的後端代碼:

res.setHeader('Content-disposition', 'attachment; filename=' + fileName); 
+0

:(.no打開鏈接不下載 – user3089993

+0

@ user3089993,我已經擴展了答案,你應該再發一個頭文件。 – Adam

+0

no .not runing :( – user3089993

0
<a href="http://localhost:9999/video.mp4" download> Dowload Video </a> 

我使用HTML5的href。它的OK