SpookyJS在Meteor中使用它时没有启动方法

时间:2015-02-25 02:33:36

标签: node.js meteor npm phantomjs spookyjs

我有一个奇怪的错误,过去几个小时找不到它的原因......

我有一个流星应用程序,它会抓取一些网页以获取信息,只要我使用reuqest和cheerio进行静态页面,一切正常,但现在我有一个动态网站,我想使用phantomjs,casperjs和spookyjs一,但我在这里得到一些bug ... 我的代码如下,我在开始时导入npm模块:

    if (Meteor.isServer) {
    var cheerio = Meteor.npmRequire('cheerio');
    var request = Meteor.npmRequire('request');
    var phantomJS = Meteor.npmRequire('phantomjs');
    var spooky = Meteor.npmRequire('spooky');

过了一段时间后,我想使用spooky来抓取一些网页:

 spooky.start("https://www.coursera.org/");

  spooky.then( function () {
    this.fill("form", {email: user, password: pass}, true);
  });`

但是一旦我调用该方法,我就会收到以下错误消息:

    20150224-21:16:39.100(-5)? Exception while invoking method 'getLecturesCoursera' TypeError: Object function Spooky(options, callback) {
    ....
    I20150224-21:16:39.281(-5)? } has no method 'start'
    I20150224-21:16:39.281(-5)?     at [object         Object].Meteor.methods.getLecturesCoursera (app/moocis.js:72:14)

我正在做一些完全错误的事情,我不知道为什么它不起作用...... 我试图验证我的应用程序中是否正确安装了spookyjs和phantomjs,但这并不像第一次使用它们的人听起来那么容易......

1 个答案:

答案 0 :(得分:2)

通常像幽灵一样,你必须创建一个新的幽灵般的对象才能开始并运行它......

 if (Meteor.isServer) {
  Meteor.startup( function () {
    var Spooky = Meteor.npmRequire('spooky');

    var spooky = new Spooky({
          child: {
              transport: 'http'
          },
          casper: {
              logLevel: 'debug',
              verbose: true,
              ignoreSslErrors: true,
              sslProtocol: 'tlsv1'
          }
      }, function (err) {
          if (err) {
              e = new Error('Failed to initialize SpookyJS');
              e.details = err;
              throw e;
          }

          spooky.start(
              'https://www.google.com');
          spooky.then(function () {
              this.emit('hello', 'Hello, from ' + this.evaluate(function () {
                  return document.title;
              }));
          });
          spooky.run();
      });

      spooky.on('error', function (e, stack) {
        console.error(e);

        if (stack) {
          console.log(stack);
        }
      });

      spooky.on('hello', function (greeting) {
          console.log(greeting);
      });

      spooky.on('log', function (log) {
          if (log.space === 'remote') {
              console.log(log.message.replace(/ \- .*/, ''));
          }
      });
  })
}