在WebStorm中,我可以在同一个项目中运行Angular和Node吗?是否有项目模板?
我想从nodejs路由发送一个数组到angularjs
谢谢!
这是我的代码
conroller.js
$http({
method: 'GET',
url: '/Profil'
}).then(function (success){
console.log("i get the data");
$scope.items=success;
},function (error){
});
Nodejs文件:
personne1={FirstName:"a", contry:"usa",LastName:"sfn"};
personne2={FirstName:"b", contry:"usa",LastName:"sfn"};
personne3={FirstName:"x", contry:"usa",LastName:"sfn"};
list=[personne1,personne2,personne3];
console.log("hello from profil");
res.render('Profil',{items:list});
答案 0 :(得分:0)
Angular是一个前端JavaScript库。 NodeJS是使用Chrome's V8 engine作为后端的运行时环境。一起使用它们是非常有可能的。一个这样的例子是MEAN stack(MongoDB,Express,Angular,Node)。
开始使用Webstorm,Jetbrains has a help page。您还可以从Github获取starter。
快乐的编码!