// https://s.hc360.com/?w= + keyword
//在拼接网址字符串时,需要对关键字进行encodeURIComponent()编码处理,否则中文字会出现乱码。
const superagent = require('superagent');
const charset = require('superagent-charset');
charset(superagent);
superagent.get('https://s.hc360.com/?w=轮毂拉丝机')
.charset('gb2312')
.end((err,res)=>{
if(err)
return console.log('爬取失败');
console.log(res.text);
})
这段代码无法输出正确的结果,有人知道代码哪里出错了吗?
谢谢啦
相关分类