我正在尝试使用电子中的节点请求库在网络服务器上下载png和word文件。代码生成的文件已损坏。以下是代码
var req =new request({
method: 'GET',
uri: file_url,
headers:{
"Content-Type": "application/octet-stream",
"Content-disposition": "attachment"
}
}).pipe(fs.createWriteStream(path.resolve()+"\\test.png",{defaultEncoding: 'binary'}));
我尝试使用和不使用标头和编码选项。但结果仍然相同。还有其他方式