请问如何下载图片 https://cdn.ostack.cn/v-5f0a9217/global/img/user-64.png
并保存到本地
// 请问如何获取下载文件并保存
fs.writeFileSync('1.png', data, {
encoding: 'binary'
})
我尝试
const res = await got('https://cdn.ostack.cn/v-5f0a9217/global/img/user-64.png', {
responseType: 'buffer'
});
// 走不到下一步
fs.writeFileSync('1.png', res.body, {
encoding: 'binary'
})
但是这样并不能下载图片, https://github.com/sindresorhus/got/issues/899