当我单击网页界面上的链接时,我正在尝试下载文件(之前在 swift 容器(openstack)中上传)。当我显示“res”时找到该文件但没有下载(使用我的浏览器:“Fail = No File”)而且我不知道为什么..我应该使用“html.response”吗?
ps:interceptDownload 被“ostrio:file”包使用。
我正在使用这段代码:
interceptDownload(http, image, versionName) {
var options = {
container: 'openstack',
remote: 'logo.png'
};
var stream = client.download(options, function(err, res) {
if(err) {
console.log(err);
} else {
console.log(res);
}
}).pipe(fs.createWriteStream('file.txt'));
},