我有一个通过exec()
node.js 脚本中的调用执行的 phantomJS 脚本。现在我需要从 PhantomJS 脚本中返回一个字符串,以便可以在 node.js 中使用它。
有没有办法做到这一点?
节点应用:
child = exec('./phantomjs dumper.js',
function (error, stdout, stderr) {
console.log(stdout, stderr); // Always empty
});
dumper.js(幻影)
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
});