请问如何下载图片 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
有没有设置网络代理或者防火墙,跟代理有关系的话,用net 模块试一下
2.1m questions
2.1m answers
60 comments
57.0k users