从零学习node爬虫
本项目源码地址
SongZX/node爬虫学习https://gitee.com/szxio/node-crawler
发送http请求
爬取目标网址 师资力量|讲师介绍_黑马程序员使用 http 模块请求网站地址发送请求并获取详情获取网站源代码
// 批量爬取 http://www.itheima.com/teacher.html#ajavaee 网站中的老师图片
let http = require('http')
// 创建一个请求,此时不会真正的去发送请求
let request = http.request('http://www.itheima.com/teacher.html#ajavaee', res => {
// 异步响应数据
let chunsk = []
// 监听 data 事件,获取传递过来的数据片段并且拼接数据
res.on('data', c => chunsk.push(c))
// 监听end事件,数据获取完毕后触发
res.on('end',()=>{
从零学习node爬虫最先出现在Python成神之路。
共有 0 条评论