码迷,mamicode.com
首页 > Web开发 > 详细

闲来无事爬了下通讯录 试手 jsdom

时间:2014-07-10 13:58:50      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   cti   for   

curl http://xxx.com/address/addresslist\?search\=%40 --cookie oa_cookie=123  -s| node parss
.js

  

 

 

js 代码

var jsdom = require(jsdom)
    ,fs = require(fs)
process.stdin.setEncoding(utf8);

var html = ‘‘
process.stdin.on(readable, function() {
    var chunk = process.stdin.read();
    if (chunk !== null) html += chunk
});
var userlist = require(./userlist.json)
    ,userHash = JSON.parse(JSON.stringify(userlist) )

process.stdin.on(end, function() {

    process.stdout.write(\n);
    jsdom.env(html,
      function (errors, window) {
        var list = []
        var l = window.document.querySelectorAll(#userlist tr)
        for (var i = 0 ; i < l.length ;i ++ ){
            var li = l[i].getElementsByTagName(td)
            if (!li || li.length < 8) continue
            var user_id = li[0].textContent
            var user = {
                "name" : li[2].textContent
                , "dep" : li[4].textContent
                , "email" : li[3].textContent
                , "phone" : li[6].textContent
                , "qq" : li[7].textContent.trim()
                }
            if (user_id in userlist ) {
                delete userHash[user_id]
                continue
            }
            user.join = +new Date()
            userlist[user_id] = user
            process.stdout.write(\n 入职: + JSON.stringify(user))

        }
        var quits = JSON.stringify(userHash)
        if ({} != quits)    {
            var leaves = quires(./leaves.json)
            for (var id in userHash){
                leaves[id] = userHash[id]
                }
            fs.writeFile(./leaves.json , JSON.stringify(leaves ,null , 4) )
            process.stdout.write(\n  离职: + quits)
        }
        fs.writeFile(./userlist.json , JSON.stringify(userlist ,null , 4) )
        process.stdout.write(\nend);
      }
    )
})

jsdom 官网 https://github.com/tmpvar/jsdom

闲来无事爬了下通讯录 试手 jsdom,布布扣,bubuko.com

闲来无事爬了下通讯录 试手 jsdom

标签:style   blog   http   color   cti   for   

原文地址:http://www.cnblogs.com/vaal-water/p/3811746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!