首頁  >  文章  >  web前端  >  Nodejs實作大量下載妹紙圖_node.js

Nodejs實作大量下載妹紙圖_node.js

WBOY
WBOY原創
2016-05-16 15:57:361499瀏覽

聽說最近下載妹子圖很夯?

Nodejs (javascrpt)自然不能落後~

雖然從來沒寫過像樣的Nodejs程序,但作為至少翻過書的前端同學來說,Nodejs用得還蠻順手的哈~
花了一點事件學習了下Nodejs的網頁取得和檔案下載方法,沒事亂搗騰就寫了這個半成品的下載器

使用方法:

1)新建一個download目錄
2)新download.js(其實名字隨便取),並複製到download目錄下
3)複製兩段程式碼到download.js中
4)開啟命令列工具,並將目前目錄轉到與download目錄下
5)在命令列中輸入:node download.js
6)等著收妹子圖吧~

簡單的妹子圖物件(新增斷定下載支援)

var http = require('http');
var fs = require('fs');
 
function Mzitu(options) {
  this.id = 1;
   
  this.initialize.call(this, options);
  return this;
}
 
Mzitu.prototype = {
  constructor: Mzitu,
  initialize: function _initialize(options) {
    this.baseUrl = options.baseUrl;
    this.dir = options.dir || '';
    this.reg = options.reg;
    this.total = options.total;
    this.page = options.from || 1;
  },
  start: function _start() {
    this.getPage();
  },
  getPage: function _getPage() {
    var self = this,
      data = null;
 
    if (this.page <= this.total) {
      http.get(this.baseUrl + this.page, function (res) {
        res.setEncoding("utf8");
 
        res.on('data', function (chunk) {
          data += chunk;
        }).on('end', function () {
          self.parseData(data);
        });
      });
    }
  },
  parseData: function _parseData(data) {
    var res = [],
      match;
 
    while ((match = this.reg.exec(data)) != null) {
      res.push(match[1]);
    }
 
    this.download(res);
  },
  download: function _download(resource) {
    var self = this,
      currentPage = self.page;
 
    resource.forEach(function (src, idx) {
      var filename = src.substring(src.lastIndexOf('/') + 1),
        writestream = fs.createWriteStream(self.dir + filename);
       
      http.get(src, function (res) {
        res.pipe(writestream);
      });
 
      writestream.on('finish', function () {
        console.log('page: ' + currentPage + ' id: ' + self.id++ + ' download: ' + filename);
      });
    });
     
    self.page++;
    self.getPage();
  }
};

妹子圖下載啟動方式

var mzitu = new Mzitu({
  baseUrl: 'http://www.mzitu.com/share/comment-page-',
  dir: '',
  reg: /<img\s*src="(.*&#63;)"\s*alt=".*"\s*\/>/g,
  total: 141,
  from: 1
});
 
mzitu.start();

以上所述就是本文的全部內容了,希望大家能夠喜歡。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn