Node.js应用程序和Python脚本应该如何交互?我可以使用一个简单的node-cmd npm包来运行Node.js代码中的脚本,还是更复杂?我错过了什么吗?
谢谢!
答案 0 :(得分:0)
使用child_process
文档(Link)
Node.js
var exec = require('child_process').exec;
var output = '';
var child = exec('python some/file.py');
child.stdout.on('data', function(data) {
output += data;
});
child.on('close', function() {
// Make your API call here
console.log(result);
});