angular2中如何使用nodejs的API?
高洛峰
高洛峰 2016-11-19 13:05:47
0
1
919
test.js

const execFile = require('child_process').execFile;
const child = execFile('python', ['temp.py'], (error, stdout, stderr) => {
  if (error) {
    throw error;
  }
  console.log(stdout);
});

node test.js即可运行上述js文件,运行python脚本,
在Angular2组件中直接使用上述代码是显然不行的,那么在Angular2中时候有办法调用nodejs的API吗?

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

全部回覆(1)
三叔

angular就是运行在浏览器环境里面,不可能调用Node API的。

有一个办法就是 用Electron作为你的浏览器环境,通过直接写桥接代码把Node API暴露给浏览器


熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板