您好,登錄后才能下訂單哦!
背景
最近打算把之前看過的nodeJs相關的內容在復習下,順便寫幾個爬蟲來打發無聊,在爬的過程中發現一些問題,記錄下以便備忘。
依賴
用到的是在網上爛大街的cheerio庫來處理爬取的內容,使用superagent處理請求,log4js來記錄日志。
日志配置
話不多說,直接上代碼:
const log4js = require('log4js'); log4js.configure({ appenders: { cheese: { type: 'dateFile', filename: 'cheese.log', pattern: '-yyyy-MM-dd.log', // 包含模型 alwaysIncludePattern: true, maxLogSize: 1024, backups: 3 } }, categories: { default: { appenders: ['cheese'], level: 'info' } } }); const logger = log4js.getLogger('cheese'); logger.level = 'INFO'; module.exports = logger;
以上直接導出一個logger對象,在業務文件里直接調用logger.info()等函數添加日志信息就可以,會按天生成日志。相關信息網絡上一堆。
爬取內容并處理
superagent.get(cityItemUrl).end((err, res) => { if (err) { return console.error(err); } const $ = cheerio.load(res.text); // 解析當前頁面,獲取當前頁面的城市鏈接地址 const cityInfoEle = $('.newslist1 li a'); cityInfoEle.each((idx, element) => { const $element = $(element); const sceneURL = $element.attr('href'); // 頁面地址 const sceneName = $element.attr('title'); // 城市名稱 if (!sceneName) { return; } logger.info(`當前解析到的目的地是: ${sceneName}, 對應的地址為: ${sceneURL}`); getDesInfos(sceneURL, sceneName); // 獲取城市詳細信息 ep.after('getDirInfoComplete', cityInfoEle.length, (dirInfos) => { const content = JSON.parse(fs.readFileSync(path.join(__dirname, './imgs.json'))); dirInfos.forEach((element) => { logger.info(`本條數據為:${JSON.stringify(element)}`); Object.assign(content, element); }); fs.writeFileSync(path.join(__dirname, './imgs.json'), JSON.stringify(content)); }); }); });
使用superagent請求頁面,請求成功后使用cheerio 來加載頁面內容,然后使用類似Jquery的匹配規則來查找目的資源。
多個資源加載完成,使用eventproxy來代理事件,處理一次資源處罰一次事件,所有事件觸發完成后處理數據。
以上就是最基本的爬蟲了,接下來就是一些可能會出問題或者需要特別注意的地方了。。。
讀寫本地文件
創建文件夾
function mkdirSync(dirname) { if (fs.existsSync(dirname)) { return true; } if (mkdirSync(path.dirname(dirname))) { fs.mkdirSync(dirname); return true; } return false; }
讀寫文件
const content = JSON.parse(fs.readFileSync(path.join(__dirname, './dir.json'))); dirInfos.forEach((element) => { logger.info(`本條數據為:${JSON.stringify(element)}`); Object.assign(content, element); }); fs.writeFileSync(path.join(__dirname, './dir.json'), JSON.stringify(content));
批量下載資源
下載資源可能包括圖片、音頻等等。
使用Bagpipe處理異步并發 參考
const Bagpipe = require('bagpipe'); const bagpipe = new Bagpipe(10); bagpipe.push(downloadImage, url, dstpath, (err, data) => { if (err) { console.log(err); return; } console.log(`[${dstpath}]: ${data}`); });
下載資源,使用stream來完成文件寫入。
function downloadImage(src, dest, callback) { request.head(src, (err, res, body) => { if (src && src.indexOf('http') > -1 || src.indexOf('https') > -1) { request(src).pipe(fs.createWriteStream(dest)).on('close', () => { callback(null, dest); }); } }); }
編碼
有時候直接使用 cheerio.load處理的網頁內容,寫入文件后發現是編碼后的文字,可以通過
const $ = cheerio.load(buf, { decodeEntities: false });
來禁止編碼,
ps: encoding庫和iconv-lite未能實現將utf-8編碼的字符轉換為中文,可能是還對API不熟悉,稍后可以關注下。
最后,附上一個匹配所有dom標簽的正則
const reg = /<.*?>/g;
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。