出现Error: getaddrinfo EAI_AGAIN后 , 如何让程序继续运行下去?
爬虫项目 下载图片。
function downImgUrl(url, filename) {
try {
console.log('download img url = ', url)
request(url).pipe(fs.createWriteStream(path.join(__dirname, `${config.local_file_path}${filename}`)))
} catch (e) {
console.log('文件创建有错误')
console.log(e)
}
}
在下载图片的时候有几率会出现以下问题,并且程序就直接挂掉了,想问通过什么方法可以让程序继续运行下去。
1 回复
good
source vue-cnode mobile 2.0