以下是PhantomJS脚本的片段。它跟踪AJAXd网页上的动态内容。 track()被调用一次,但由于某种原因,page.open()被调用3次
function track(url){
console.log('Tracking',url);
var page = require('webpage').create();
console.log('check2')
if(page){
console.log('check4');
page.open(url, function (status) {
console.log('check3');
if (status !== 'success') {
console.log('Unable to load the address!');
setTimeout(function(){start();},1000);
setTimeout(function(){page.release();},5000);
}
else {
console.log('check');
var i = 0;
var last_winner = false;
var logged_once = false;
var interval = false;
if(!interval){
interval = setInterval(function(){
var scraping = scrape(page);
var date = new Date();
var time = date.getTime();
if(scraping){/*Bunch of console logs*/}
else{
console.log('Bidding ended');
clearInterval(interval);
setTimeout(function(){start();},1000);
setTimeout(function(){page.release();},5000);
}
scraping = false;
},1000);
};
};
});
};
};
将以下内容记录到控制台:
Tracking http://www.google.com
check2
check4
check3
check
check3
check
check3
check
由于某些原因我无法弄清楚,page.open()被调用了3次。
答案 0 :(得分:2)
如果在页面上加载了重定向或iFrame,显然PhantomJS会多次调用page.open。
有一些关于如何在PhantomJS错误跟踪器上处理它的建议。
http://code.google.com/p/phantomjs/issues/detail?id=353&q=open%20callback