Quantcast
Channel: 万维网黑客 » phantomjs
Viewing all articles
Browse latest Browse all 10

phantomjs 浏览器(不知道应该叫什么 看起来很厉害的样子)

$
0
0
var cb = function(data){
    var list = data.query.results.movie;

    list.forEach(function(item){
        console.log(item.title + ' [' + item.rating.MPAA.content + ']');
    });

    phantom.exit();
}

var el = document.createElement('script');
el.src='http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20movies.kids-in-mind&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback=cb';
document.body.appendChild(el);

 


Viewing all articles
Browse latest Browse all 10

Trending Articles