凌云客 2019-06-27
原文链接:Node JS爬虫:爬取瀑布流网页高清图
静态为主的网页往往用get方法就能获取页面所有内容。动态网页即异步请求数据的网页则需要用浏览器加载完成后再进行抓取。本文介绍了如何连续爬取瀑布流网页。
在知乎提到python
就必有一大帮人提起爬虫,咱Node JS
爬虫也是非常简单的,和python
相比仅仅是“异步”和“多线程”的性能对比而已。对python
了解不多,故对此不做评价。
phantomjs是一个‘无壳’的chrome
,具体安装方法查看phantomjs.org。phantomjs
提供命令行工具运行,运行需使用命令phantom xxx.js
。使用phantom-node
这个库可以在Node JS
中把玩phantomjs
,这样就可以使用pm2
进行进程守护和负载均衡了。
爬取200张以上的1920*1080
分辨率的动漫壁纸,网页是百度瀑布流图片
瀑布流是根据页面滚动位置来判断是否继续往下加载,故要利用phantomjs
滚动页面来获取更多图片链接。单个图片详细页面刚进入时是压缩过的图片,这是百度优化访问速度的措施,等待几秒图片src就会替换成大图的链接。因此,进入图片详细页时应延迟几秒再获取图片src,具体延迟几秒视你网速而定。
首先利用phantom打开网页
const phantom = require('phantom') (async function() { const instance = await phantom.create(); const page = await instance.createPage(); const status = await page.open(url); const size = await page.property('viewportSize', { width: 1920, height: 1080 }) }())
获取链接数量,不足200则滚动网页
// 添加一个延时函数,等待页面加载后再滚动 function delay(second) { return new Promise((resolve) => { setTimeout(resolve, second * 1000); }); }
async function pageScroll(i) { await delay(5) await page.property('scrollPosition', { left: 0, top: 1000 * i }) let content = await page.property('content') let $ = cheerio.load(content) console.log($('.imgbox').length) if($('.imgbox').length < 200) { await pageScroll(++i) } } await pageScroll(0)
提取图片链接
let urlList = [] $('.imgbox').each(function() { urlList.push('https://image.baidu.com'+$(this).find('a').attr('href')) })
定义保存图片的函数
const request = require('request') const fs = require('fs') function save(url) { let ext = url.split('.').pop() request(url).pipe(fs.createWriteStream(`./image/${new Date().getTime()}.${ext}`)); }
遍历urlList
,建议用递归遍历,循环遍历delay
不起作用
async function imgSave(i) { let page = await page.open(urlList[i]) delay(1) let content = await page.property('content') $ = cheerio.load(content) let src = $('#currentImg').attr('src') save(src) if(i<urlList.length) { await imgSave(++i) } } await imgSave(0)
最后爬取结果如图,都是高分辨率的,部分图片做了防爬处理
const phantom = require('phantom') const cheerio = require('cheerio') const request = require('request') const fs = require('fs') function delay(second) { return new Promise((resolve) => { setTimeout(resolve, second * 1000); }); } let url = 'https://image.baidu.com/search/index?tn=baiduimage&ipn=r&ct=201326592&cl=2&lm=-1&st=-1&fm=index&fr=&hs=0&xthttps=111111&sf=1&fmq=&pv=&ic=0&nc=1&z=&se=1&showtab=0&fb=0&width=&height=&face=0&istype=2&ie=utf-8&word=%E5%8A%A8%E6%BC%AB+%E5%A3%81%E7%BA%B8&oq=%E5%8A%A8%E6%BC%AB+%E5%A3%81%E7%BA%B8&rsp=-1' function save(url) { let ext = url.split('.').pop() request(url).pipe(fs.createWriteStream(`./image/${new Date().getTime()}.${ext}`)); } (async function() { let instance = await phantom.create(); let page = await instance.createPage(); let status = await page.open(url); let size = await page.property('viewportSize', { width: 1920, height: 1080 }) let $ async function pageScroll(i) { await delay(1) await page.property('scrollPosition', { left: 0, top: 1000 * i }) let content = await page.property('content') $ = cheerio.load(content) if($('.imgbox').length < 200) { await pageScroll(++i) } } await pageScroll(0) let urlList = [] $('.imgbox').each(function() { urlList.push('https://image.baidu.com'+$(this).find('a').attr('href')) }) async function imgSave(i) { let status = await page.open(urlList[i]) await delay(1) let content = await page.property('content') $ = cheerio.load(content) let src = $('#currentImg').attr('src') save(src) if(i<urlList.length) { await imgSave(++i) } } await imgSave(0) await instance.exit() }());
我的博客:www.bougieblog.cn,欢迎前来尬聊。