nodejs 实现简单 爬取页面内容

Posted 撸的一手好诗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs 实现简单 爬取页面内容相关的知识,希望对你有一定的参考价值。

var request = require(‘request‘);
request(‘http://www.xxxxxxxx.com‘, function (error, response, body) {
  if (!error && response.statusCode == 200) {
    console.log(body) 
  }
})

命令行执行本文件输出页面

以上是关于nodejs 实现简单 爬取页面内容的主要内容,如果未能解决你的问题,请参考以下文章

Puppeteer爬取Youtube列表页面

通过nodejs 服务器读取HTML文件渲染到页面

Jsoup-简单爬取知乎推荐页面(附:get_agent())

NodeJS 爬虫爬取LOL英雄联盟的英雄信息,superagent+cheerio+async

python简单实现爬取小说《天龙八部》,并在页面本地访问

nodejs实现定时爬取微博热搜