요즘 여자 사진 다운로드가 인기라고 들었는데?
Nodejs(javascrpt)는 당연히 뒤쳐질 수 없죠~
괜찮은 Nodejs 프로그램을 작성한 적은 없지만 책이라도 읽어본 프론트엔드 학생으로서 Nodejs를 사용하는 것은 꽤 편합니다~
저는 Nodejs에서 웹페이지를 얻고 파일을 다운로드하는 방법을 배우는데 약간의 시간을 보냈고, 별 문제가 없을 때 이 반제품 다운로더를 작성했습니다
사용법:
1) 새 다운로드 디렉토리를 생성합니다
2) 새 download.js를 만들고(실제로 원하는 이름을 지정) 다운로드 디렉터리에 복사합니다.
3) 두 개의 코드를 download.js에 복사하세요
4) 명령줄 도구를 열고 현재 디렉터리를 다운로드 디렉터리로 변경합니다
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="(.*?)"\s*alt=".*"\s*\/>/g, total: 141, from: 1 }); mzitu.start();
위 내용은 이 글의 전체 내용입니다. 모두 마음에 드셨으면 좋겠습니다.