我正在尝试将参数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);
});
}};