0

我正在尝试将参数countryCode发送到 spookyjs 函数。

我的问题是如何做到这一点,因为当我想 在 spooky.then(function) 中使用countryCode时, countryCode 是空的

十分感谢

这是调用代码

var greetings = require("./get_country.js");
var countryCode = "ES";
greetings.getOne("ES");

这是功能代码:

var Spooky = require('spooky');
module.exports = {
  getOne: function(countryCode) {
    var init = function(error) {
      if (error) {
        e = new Error('Failed to initialize SpookyJS');
        e.details = error;
        throw e;
      }
      spooky.start('http://www.domain.com/');
        spooky.then(function() {
          this.emit('return', this.evaluate(function() {
            var raw_countries = document.querySelectorAll('#country-selector li.' + countryCode);
            return raw_countries;
          }));
       });
       spooky.run();
       },
       spooky = new Spooky({
         child: {
         transport: 'http'
       },
       casper: {
         logLevel: 'debug',
         verbose: true
       }
    }, init);
    spooky.on('error', function(error, stack) {
        console.error(error);
        if (stack) {
            console.log(stack);
        }
    });
    spooky.on('return', function(data) {
        console.log(data);
    });
}};
4

1 回答 1

0

您需要将所需的全局变量传递给 spooky 的 then() 和 evaluate() 函数才能访问它,如下所示

    spooky.start('example.com/');
    spooky.then([{ countryCode: countryCode }, function () {
        this.emit('return', this.evaluate(function (countryCode) {
            var raw_countries = document.querySelectorAll('#country-selector li.' + countryCode);
            return raw_countries;
        }), countryCode);
    }]);
    spooky.run();

参考示例

于 2021-01-11T17:19:50.393 回答