-1

我正在使用 angular fullstack ,一个 yoeman 生成器来创建 Web 应用程序。我想从 nodejs 调用 python 脚本,这些脚本将返回一些输出,这些输出将显示在 html 页面中。我应该使用什么库?提前致谢 。

4

1 回答 1

0

子进程将是您想要的。我发给你的链接中有完整的文档,非常简单。

您可能至少需要知道的是:

child_process = require('child_process');
var script = child_process.exec('python script.js',function(err,stdout, stderr) {
    if (err) throw err;
    console.log("Output: " + stdout);
});; 
于 2015-11-03T11:17:10.447 回答