一点背景......我有点新的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
?
这是参数传递给一个匿名函数的正确方法?