PhantomJS因参考错误而失败:无法找到变量:require'

时间:2016-07-14 14:35:02

标签: javascript node.js phantomjs

我在Ubuntu 14.04工作。我已完成npm install phantomjs,现在我只是想截取一个网页using the simple example in the docs

这是我的剧本:

var page = require('webpage').create();
page.open('http://github.com/', function() {
  page.render('github.png');
  phantom.exit();
});

现在我尝试使用phantomjs --debug=true --ssl-protocol=any github.js运行它。

然而,ReferenceError: Can't find variable: require失败了。

我做错了什么?

我不确定是否需要允许传出/进入网络连接。

这是完整的错误输出:http://pastebin.com/raw/7p0nSeJx

0 个答案:

没有答案