phantomjs page.open()似乎不存在

时间:2013-02-26 10:01:19

标签: java phantomjs

我正在尝试使用phantomjs获取页面内容。在官方网站上的许多示例中(例如:https://github.com/ariya/phantomjs/blob/master/examples/imagebin.js),使用了函数page.open() 在我的脚本中虽然它似乎不起作用。我使用反射来查看页面对象的所有已定义方法:

  for ( var prop in page) {
      if (typeof page[prop] == 'function') {
          log("method in page: " + prop);
      }
  }

并且open()方法没有显示出来。 (close(),render()等...确实出现了)
当我尝试执行脚本时:

// include plugins
var system = require('system');
var fileSystem = require('fs');
var page = require('webpage').create();

// global errorhandler
phantom.onError = function(msg, trace) {
  console.log("ERROR!!!!! \n" + msg);
  phantom.exit(1);
};

// read json input and remove single outer quotes if set
var jsonin = system.args[1];
if (jsonin.charAt(0) == "'") {
  jsonin = jsonin.substr(1, jsonin.length - 2);
}
// make object of json
var data = eval('(' + jsonin + ')');
// optional url
var url = system.args[2];
// transfer file
var dest = system.args[3];

console.log("systemargs[1]: data -> " + data);
console.log("systemargs[2]: url -> " + url);
console.log("systemargs[3]: dest -> " + dest);

openRoot();

/*
 * open site
 */
function openRoot() {    
  page.onConsoleMessage = function(msg) {
    console.log('INNER ' + msg);
  };

  page.open(url, function(status) {
    if (status === "success") {
      if (loadCount == 0) { // only initial open
        console.log("opened successfully.");
        page.injectJs("./jquery-1.8.3.min.js");
      } else {
        console.log("page open error.");
        console.log('skip refresh ' + loadCount);
      }

    } else {
      console.log("error opening: " + status);
    }
  });
}
phantom.exit(0);

它不执行open函数。日志不会在open()方法中显示任何消息。

对于我可能做错的任何建议将不胜感激。如果需要其他信息,请告知我们 问候,
亚历克斯

编辑:
这条线

console.log(typeof (page.open));

输出:function这不是我的预期,考虑到我写入日志的前一个方法列表,其中open不存在。 HMM。

1 个答案:

答案 0 :(得分:1)

经过数小时无意义的搜索,我发现了错误。愚蠢的我。在脚本的最后,我打电话给phantom.exit()我不应该。

工作代码包括一个Interval,用于检查对象,在我的情况下为content,以及content.isFinished的成员。如果我将其设置为true,则会调用phantom.exit() 我的坏,绝对是我的错 工作代码:

var url = system.args[2];
// transfer file
var dest = system.args[3];

content = new Object();
content.isFinished = false;

console.log("systemargs[1]: data -> " + data);
console.log("systemargs[2]: url -> " + url);
console.log("systemargs[3]: dest -> " + dest);

openRoot();

/*
 * open site
 */
function openRoot() {    
  page.onConsoleMessage = function(msg) {
    console.log('INNER ' + msg);
  };

  page.open(url, function(status) {
    if (status === "success") {
      if (loadCount == 0) { // only initial open
        console.log("opened successfully.");
        page.injectJs("./jquery-1.8.3.min.js");

        // do stuff
        content.isFinished = true;
      } else {
        console.log("page open error.");
        console.log('skip refresh ' + loadCount);
        content.isFinished = true
      }

    } else {
      console.log("error opening: " + status);
    }
  });
}

/*
 * wait for completion
 */
var interval = setInterval(function() {
  if (content.isFinished) {
    page.close();

    f = fileSystem.open(dest, "w");
    f.writeLine(out);
    f.close();

    // exit phantom
    phantom.exit();
  } else {
    console.log('not finished - wait.');
  }
}, 5000);

的问候,
亚历克斯