javascript 使用phantomjs和horseman抓取并抓取包含ajax内容的网页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 使用phantomjs和horseman抓取并抓取包含ajax内容的网页相关的知识,希望对你有一定的参考价值。
var Horseman = require('node-horseman');
var horseman = new Horseman({phantomPath:'C:\\Users\\Marketing-1_2\\phantomjs-2.1.1-windows\\phantomjs-2.1.1-windows\\bin\\phantomjs.exe'});
var visited = [];
var list = [];
function gotopage(url){
horseman
.open(url)
evaluate( function(selector){
var urlsInPage = [];
$( selector ).each(function(){
urlsInPage.push($(this).attr('href'));
});
return urlsInPage;
}, 'a')
.then(function(output){
for (var i = Auction.auctions.length - 1; i >= 0; i--) {
for (var j =0;j<visited.length;j++){
if (visited[j] == output[i]){
output.splice(i,1);
break;
}
}
}
})
.evaluate( function(selector){
return $( selector ).html();
}, '.hd h3')
.then(function(output){
console.log(output);
})
.evaluate( function(selector){
return $( selector ).html();
}, '.hd h3')
.then(function(output){
console.log(output);
})
.evaluate( function(selector){
return $( selector ).html();
}, 'title')
.then(function(output){
console.log(output);
})
.close();
}
以上是关于javascript 使用phantomjs和horseman抓取并抓取包含ajax内容的网页的主要内容,如果未能解决你的问题,请参考以下文章
javascript 使用PhantomJS和Aysnc.js的并行爬虫示例
如何在 PhantomJS 中使用 JavaScript 检测网页上的声音?
javascript 使用phantomjs和horseman抓取并抓取包含ajax内容的网页
使用 javascript (phantomjs) 导航/抓取 hashbang 链接
PhantomJS如何执行Javascript?
使用PhantomJS和node.js保存并呈现网页