我在nodejs中尝试各种子进程方法。因此,为了执行linux命令,我尝试了这段代码,它打印当前的工作目录:
var execSync = require('child_process').execSync;
function commandOutput(error, stdout, stderr) {
if (stderr !== null) {
console.error(stderr);
}
if (error !== null) {
console.error('execution error: ' + error);
}
if (stdout)console.log(stdout);
console.log("done");
}
var commandToExecute = "pwd";
execSync(commandToExecute, commandOutput);
console.log("executed");
虽然如果我用exec替换execSync,这可以正常工作,但上面的代码,即execSync会出现以下错误:
execSync(commandToExecute, commandOutput); ^ TypeError: undefined is not a function at Object. (/home/User_Name/fil.js:24:1) at Module._compile (module.js:456:26) at Object.Module._extensions..js (module.js:474:10) at Module.load (module.js:356:32) at Function.Module._load (module.js:312:12) at Function.Module.runMain (module.js:497:10) at startup (node.js:119:16) at node.js:902:3
为什么会这样?我应该改变什么才能发挥作用?
答案 0 :(得分:0)
尝试将您的节点更新到最新的稳定版本6.10)
您可以通过运行:
来实现curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
sudo apt-get install -y nodejs
然后,您可以通过运行
来检查您的版本nodejs -v
答案 1 :(得分:0)
您正在将回调传递给同步功能
尝试使用exec
代替execSync
。
如需进一步参考:https://nodejs.org/api/child_process.html#child_process_child_process_exec_command_options_callback