📅  最后修改于: 2022-03-11 15:02:20.760000             🧑  作者: Mango
axios
.get(`url`,
{ headers: { 'User-Agent': 'YOUR-SERVICE-NAME' } } )
.then(response => {
// here will be cheerio scraping
})
.catch(function(e) {
console.log(e);
});