从 nodejs 调用哪个库 python 脚本?
which library to call python script from nodejs?
我正在使用 angular fullstack ,一个 yoeman 生成器来创建 Web 应用程序。我想从 nodejs 调用 python 脚本,这些脚本将返回一些输出,这些输出将显示在 html 页面中。我应该使用什么图书馆?提前致谢。
Child Process 就是你想要的。我发给你的 link 中有完整的文档,非常简单明了。
您可能至少需要知道的是:
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);
});;
我正在使用 angular fullstack ,一个 yoeman 生成器来创建 Web 应用程序。我想从 nodejs 调用 python 脚本,这些脚本将返回一些输出,这些输出将显示在 html 页面中。我应该使用什么图书馆?提前致谢。
Child Process 就是你想要的。我发给你的 link 中有完整的文档,非常简单明了。
您可能至少需要知道的是:
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);
});;