我使用以下代码从节点应用程序执行命令,这是有效的...问题是当有错误我没有得到它,我尝试调试代码,当我把断点放在if (错误)它没有停止,任何想法为什么?
public float getInterpolation(float input) {
return (float)(Math.cos((input) * Math.PI)
}
答案 0 :(得分:0)
http://krasimirtsonev.com/blog/article/Nodejs-managing-child-processes-starting-stopping-exec-spawn 根据这个来源,作者尝试不同的方法,你应该尝试将你的exec部分更改为以下的部分:
exec(cmd, function(error, stdout, stderr) {
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
if (error !== null) {
console.log('exec error: ' + error);
}
});