一点背景...我对 javascript 和 phantom.js 有点陌生,所以我不知道这是 javascript 还是 phantom.js 错误(功能?)。
以下成功完成(抱歉缺少 phantom.exit(),完成后您只需按 ctrl+c):
var page = require('webpage').create();
var comment = "Hello World";
page.viewportSize = { width: 800, height: 600 };
page.open("http://www.google.com", function (status) {
if (status !== 'success') {
console.log('Unable to load the address!');
phantom.exit();
} else {
page.includeJs('http://code.jquery.com/jquery-latest.min.js', function() {
console.log("1: ", comment);
}, comment);
var foo = page.evaluate(function() {
return arguments[0];
}, comment);
console.log("2: ", foo);
}
});
这有效:
page.includeJs('http://code.jquery.com/jquery-latest.min.js', function() {
console.log("1: ", comment);
}, comment);
输出:1: Hello World
但不是:
page.includeJs('http://code.jquery.com/jquery-latest.min.js', function(c) {
console.log("1: ", c);
}, comment);
输出:1: http://code.jquery.com/jquery-latest.min.js
并不是:
page.includeJs('http://code.jquery.com/jquery-latest.min.js', function() {
console.log("1: ", arguments[0]);
}, comment);
输出:1: http://code.jquery.com/jquery-latest.min.js
看第二件,这是可行的:
var foo = page.evaluate(function() {
return arguments[0];
}, comment);
console.log("2: ", foo);
输出:2: Hello World
和这个:
var foo = page.evaluate(function(c) {
return c;
}, comment);
console.log("2: ", foo);
输出:2: Hello World
但不是这个:
var foo = page.evaluate(function() {
return comment;
}, comment);
console.log("2: ", foo);
输出:
ReferenceError:找不到变量:注释
phantomjs://webpage.evaluate():2
phantomjs://webpage.evaluate():3
phantomjs://webpage.evaluate():3
2:空
好消息是,我知道什么有效,什么无效,但是保持一点一致性怎么样?
includeJs
为什么和有区别evaluate
?
将参数传递给匿名函数的正确方法是什么?