节点子进程执行命令失败,错误代码为 1
Node Child Process Exec Command Failed with error code 1
我正在尝试使用节点 js 子进程执行某行并出现错误。
以下是我的代码:
let cmd : string = "code " + PROJECTS[value];
exec(cmd, function callback(error, stdout, stderr) {
console.log("started console app");
});
错误:
cmd:"C:\WINDOWS\system32\cmd.exe /s /c "code c:\Users\shana\Dropbox\code-settings-syn... (length: 82)"
code:1
killed:false
message:"Command failed: C:\WINDOWS\system32\cmd.exe /s /c "code c:\Users\shana\Dropbox\c... (length: 99)"
signal:null
stack:undefined
错误详情 JSON。
Full CMD : "C:\WINDOWS\system32\cmd.exe /s /c "code c:\Users\shana\Dropbox\code-settings-sync""
Full message : "Command failed: C:\WINDOWS\system32\cmd.exe /s /c "code c:\Users\shana\Dropbox\code-settings-sync"\n"
尝试一个更简单的例子..
var exec = require('child_process').exec;
var cmd = 'code C:\Program Files';
exec(cmd, function(err, stdout, stderr) {
if (err) {
console.error(err);
return;
}
console.log(stdout);
});
这个有用吗??
我不想看到整个错误(太冗长)所以我做了这样的事情:
try {
const { stdout, stderr } = await exec('echo TEST');
console.log('stdout:', stdout);
console.log('stderr:', stderr);
} catch (e) {
// If exec fails and you want to see the whole ugly error:
// console.error(e);
console.log('How about a nice human readable message instead?');
}
由于“await”,这进入了“async”函数。
更多信息:
我正在尝试使用节点 js 子进程执行某行并出现错误。 以下是我的代码:
let cmd : string = "code " + PROJECTS[value];
exec(cmd, function callback(error, stdout, stderr) {
console.log("started console app");
});
错误:
cmd:"C:\WINDOWS\system32\cmd.exe /s /c "code c:\Users\shana\Dropbox\code-settings-syn... (length: 82)"
code:1
killed:false
message:"Command failed: C:\WINDOWS\system32\cmd.exe /s /c "code c:\Users\shana\Dropbox\c... (length: 99)"
signal:null
stack:undefined
错误详情 JSON。
Full CMD : "C:\WINDOWS\system32\cmd.exe /s /c "code c:\Users\shana\Dropbox\code-settings-sync""
Full message : "Command failed: C:\WINDOWS\system32\cmd.exe /s /c "code c:\Users\shana\Dropbox\code-settings-sync"\n"
尝试一个更简单的例子..
var exec = require('child_process').exec;
var cmd = 'code C:\Program Files';
exec(cmd, function(err, stdout, stderr) {
if (err) {
console.error(err);
return;
}
console.log(stdout);
});
这个有用吗??
我不想看到整个错误(太冗长)所以我做了这样的事情:
try {
const { stdout, stderr } = await exec('echo TEST');
console.log('stdout:', stdout);
console.log('stderr:', stderr);
} catch (e) {
// If exec fails and you want to see the whole ugly error:
// console.error(e);
console.log('How about a nice human readable message instead?');
}
由于“await”,这进入了“async”函数。
更多信息: