搜尋

首頁  >  問答  >  主體

angular2中如何使用nodejs的API?

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吗?

高洛峰高洛峰2932 天前921

全部回覆(1)我來回復

  • 三叔

    三叔2016-11-19 13:06:33

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

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


    回覆
    0
  • 取消回覆