gpt4 book ai didi

node.js - Nodejs : how to check if spawn is successfull?

转载 作者:太空宇宙 更新时间:2023-11-04 03:01:10 25 4
gpt4 key购买 nike

我正在从我的快速脚本中生成命令,但我需要区分错误和成功。我正在寻找 child.on('success'...) 函数,但它不存在。

这段代码(当然)不起作用。

app.get(myID+'/test/', function(req, res){ 
var child = spawn('lbg');
child.on('error', function(err) {
console.log('Failed to start child process.');
res.status(404).send("Cannot send test command");
return;
});
res.json({statusMessage: "OK", statusCode: "200"});

});

换句话说,我只需要触发正确的响应,而不是两者都触发!

最佳答案

app.get(myID+'/test/', function(req, res){ 
var child = spawn('lbg');
child.on('close', code => {
if (code === 0) {
res.json({statusMessage: "OK", statusCode: "200"});
} else {
res.status(404).send("Cannot send test command");
}
}).on('error', err => res.status(404).send(err)) ;
});

关于node.js - Nodejs : how to check if spawn is successfull?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56343932/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com