nodejs爬虫--superagent结果出错

// 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);


    })

这段代码无法输出正确的结果,有人知道代码哪里出错了吗?
谢谢啦

慕虎7371278
浏览 797回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript