【新手向】使用nodejs抓取百度贴吧内容

参考教程:https://github.com/alsotang/node-lessons 1~5节

 

1. 通过superagent抓取页面内容

superagent .get('http://www.cnblogs.com/wenruo/') .end(function(err, res) { if (err) { reject(err) } else { console.log(res.text) } })

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpypzj.html