У меня есть phantomJS script, который выполняется через вызов exec()
в node.js script.
Теперь мне нужно вернуть строку из PhantomJS script, чтобы ее можно было использовать в node.
Есть ли способ достичь этого?
Node приложение:
child = exec('./phantomjs dumper.js',
function (error, stdout, stderr) {
console.log(stdout, stderr); // Always empty
});
dumper.js(Phantom)
var system = require('system');
var page = require('webpage').create();
page.open( system.args[1], function (status) {
if (status !== 'success') {
console.log('Unable to access the network!');
} else {
return "String"; // Doesn't work
}
phantom.exit('String2'); //Doesn't work either
});