我是节点js和python的新手,我想将节点js传递给python,反之亦然。我需要在web浏览器上运行和托管的简单脚本来获取节点js中执行的python脚本。在运行带有托管环境的节点js脚本之后,只需要将一条消息从节点js传输到python。
答案 0 :(得分:2)
您需要使用系统调用从nodejs执行python代码。
var exec = require('child_process').exec;
var cmd = 'python myscript.py';
exec(cmd, function(error, stdout, stderr) {
// command output is in stdout (This the output from the python script that you might use
});