Node.js 實現簡易爬蟲
阿新 • • 發佈:2019-02-06
依賴選擇
初步實現
分析頁面
獲取一頁電影標題
var cheerio = require('cheerio');var http = require('http');var iconv = require('iconv-lite');var url = 'http://www.ygdy8.net/html/gndy/dyzz/index.html'; |
http.get(url, function(sres) { var chunks = []; sres.on('data', function(chunk) { chunks.push(chunk); }); // chunks裡面儲存著網頁的 html 內容,將它zhuan ma傳給 cheerio.load 之後 // 就可以得到一個實現了 jQuery 介面的變數,將它命名為 `$` // 剩下就都是 jQuery 的內容了 sres.on('end' |
獲取多頁電影標題
var index = 1; //頁面數控制var url = 'http://www.ygdy8.net/html/gndy/dyzz/list_23_';var titles = []; //用於儲存titlefunction getTitle(url, i) { console.log("正在獲取第" + i + "頁的內容"); http.get(url + i + '.html', function(sres) { var chunks = []; sres.on('data', function(chunk) { chunks.push(chunk); }); sres.on('end', function() { var html = iconv.decode(Buffer.concat(chunks), 'gb2312'); var $ = cheerio.load(html, {decodeEntities: false}); $('.co_content8 .ulink').each(function (idx, element) { var $element = $(element); titles.push({ title: $element.text() }) }) if(i < 2) { //為了方便只爬了兩頁 getTitle(url, ++index); //遞迴執行,頁數+1 } else { console.log(titles); console.log("Title獲取完畢!"); } }); });}function main() { console.log("開始爬取"); getTitle(url, index);}main(); //執行主函式 |
獲取電影下載連線
function getBtLink(urls, n) { //urls裡面包含著所有詳情頁的地址 console.log("正在獲取第" + n + "個url的內容"); http.get('http://www.ygdy8.net' + urls[n].title, function(sres) { var chunks = []; sres.on('data', function(chunk) { chunks.push(chunk); }); sres.on('end', function() { var html = iconv.decode(Buffer.concat(chunks), 'gb2312'); //進行轉碼 var $ = cheerio.load(html, {decodeEntities: false}); $('#Zoom td').children('a').each(function (idx, element) { var $element = $(element); btLink.push({ bt: $element.attr('href') }) }) if(n < urls.length - 1) { getBtLink(urls, ++count); //遞迴 } else { console.log("btlink獲取完畢!"); console.log(btLink); } }); });} |
儲存資料
function save() { var MongoClient = require('mongodb').MongoClient; //匯入依賴 MongoClient.connect(mongo_url, function (err, db) { if (err) { console.error(err); return; } else { console.log("成功連線資料庫"); var collection = db.collection('node-reptitle'); collection.insertMany(btLink, function (err,result) { //插入資料 if (err) { console.error(err); } else { console.log("儲存資料成功"); } }) db.close(); } });} |
個人建了前端學習群,旨在一起學習前端。純淨、純粹技術討論,非前端人員勿擾!入群加我微信:iamaixiaoxiao。