如何将参数传递给CasperJS评估中的函数?
//Should be logged in at this point
casper.then(function() {
var counter = 0;
var cap = 500;
this.evaluate(function(counter) {
var children = $('.companies-using-service').children();
while (counter < children.length) {
child = children[counter];
console.log($(child).find('a').attr('data-hint'));
counter++;
}
}, counter);
});
};
var scrapeClients = function(counter) {
var children = $('.companies-using-service').children();
while (counter < children.length) {
child = children[counter];
console.log($(child).find('a').attr('data-hint'));
counter++;
}
}
上面,我可以使用unamed函数传递参数。但是,我希望将函数scrapeClients
传递给evaluate函数。在那种情况下,我尝试了以下this.evaluate(scrapeClients(counter), counter)
。但是,这不起作用,错误表明找不到$
变量。
答案 0 :(得分:0)
函数是JavaScript中的一等公民。您可以像变量一样对待它们。你可以传递它们。这意味着您不想要
this.evaluate(scrapeClients(counter), counter)
而是
this.evaluate(scrapeClients, counter)
在第一种情况下,您实际上是直接调用该函数。由于该函数使用的某些页面属性仅在casper.evaluate
内可用,因此会抛出错误并停止脚本。