我有網址: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>
但它不成功。 請幫我嗎?
有什麼錯誤信息? – Adam
無信息丟 – user3089993
http://imgur.com/a/1csrt – user3089993