如何等到评估步骤在 CasperJS 中完成?
How to wait until evaluate step done in CasperJS?
假设我有这个脚本:
var me = null;
casper
.start()
.then(function(){
me = this.evaluate(someFunction);
})
.wait(5000) //this what i doing until now
.then(nextFunction)
casper.run()
我需要从评估中计算 me
,然后在 nextFunction 中执行 me
。
问题是,我不知道评估何时结束。为了解决这个问题,我通常在几秒钟内使用 wait()。
我不喜欢这样,因为我无法尽快执行 nextFunction
。在 jQuery 中,我可以使用 callback/promise 来摆脱它,但是如何在 casperJS 上做到这一点?
我尝试了这个,但没有成功,
var me = null;
casper
.start()
.then(myEval)
.wait(5000) //this what i doing until now
.then(nextFunction)
casper.run()
function myEval(){
me = this.evaluate(someFunction);
if(me==null) this.wait(2000, myEval);
}
所以自从我学习 casperjs 到现在,我一直在我的脚本中添加丑陋的 wait()。
更新
建议答案的结果:
var casper = require('casper').create();
var me = 'bar';
function timeoutFunction(){
setTimeout(function(){
return 'foo';
},5000);
}
function loopFunction(i){
var a = 0;
for(i=0; i<=1000;i++){
a=i;
}
return a;
}
function nextFunction(i){
this.echo(i);
}
casper
.start('http://casperjs.org/')
.then(function(){
me = this.evaluate(timeoutFunction);
return me;
}).then(function() {
this.echo(me); //null instead foo or bar
me = this.evaluate(loopFunction);
return me
}).then(function() {
this.echo(me);//1000 => correct
nextFunction(me); //undefined is not function. idk why
});
casper.run();
您可以像这样进行 Promises 链接:
casper
.start()
.then(function(){
me = this.evaluate(someFunction);
return me;
}).then(function(me) {
// me is the resolved value of the previous then(...) block
console.log(me);
nextFunction(me);
});
可以找到另一个通用示例 here。
假设我有这个脚本:
var me = null;
casper
.start()
.then(function(){
me = this.evaluate(someFunction);
})
.wait(5000) //this what i doing until now
.then(nextFunction)
casper.run()
我需要从评估中计算 me
,然后在 nextFunction 中执行 me
。
问题是,我不知道评估何时结束。为了解决这个问题,我通常在几秒钟内使用 wait()。
我不喜欢这样,因为我无法尽快执行 nextFunction
。在 jQuery 中,我可以使用 callback/promise 来摆脱它,但是如何在 casperJS 上做到这一点?
我尝试了这个,但没有成功,
var me = null;
casper
.start()
.then(myEval)
.wait(5000) //this what i doing until now
.then(nextFunction)
casper.run()
function myEval(){
me = this.evaluate(someFunction);
if(me==null) this.wait(2000, myEval);
}
所以自从我学习 casperjs 到现在,我一直在我的脚本中添加丑陋的 wait()。
更新
建议答案的结果:
var casper = require('casper').create();
var me = 'bar';
function timeoutFunction(){
setTimeout(function(){
return 'foo';
},5000);
}
function loopFunction(i){
var a = 0;
for(i=0; i<=1000;i++){
a=i;
}
return a;
}
function nextFunction(i){
this.echo(i);
}
casper
.start('http://casperjs.org/')
.then(function(){
me = this.evaluate(timeoutFunction);
return me;
}).then(function() {
this.echo(me); //null instead foo or bar
me = this.evaluate(loopFunction);
return me
}).then(function() {
this.echo(me);//1000 => correct
nextFunction(me); //undefined is not function. idk why
});
casper.run();
您可以像这样进行 Promises 链接:
casper
.start()
.then(function(){
me = this.evaluate(someFunction);
return me;
}).then(function(me) {
// me is the resolved value of the previous then(...) block
console.log(me);
nextFunction(me);
});
可以找到另一个通用示例 here。