是的,问题出在编码上。当您等待整个传输完成时
body,默认情况下将其强制为字符串。您可以通过将选项设置为来告诉
request您一个
Buffer替代
encoding项
null:
var fileUrl = "http://twitter.github.com/bootstrap/assets/bootstrap.zip";var output = "bootstrap.zip";request({url: fileUrl, encoding: null}, function(err, resp, body) { if(err) throw err; fs.writeFile(output, body, function(err) { console.log("file written!"); });});
另一个更优雅的解决方案是使用
pipe()将响应指向文件可写流:
request('http://twitter.github.com/bootstrap/assets/bootstrap.zip') .pipe(fs.createWriteStream('bootstrap.zip')) .on('close', function () { console.log('File written!'); });
一个班轮总是赢:)
pipe()返回目标流(在这种情况下为WriteStream),因此您可以侦听其
close事件以在写入文件时得到通知。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)