AngularJS应用和API在同一个域上

时间:2015-12-29 09:00:11

标签: angularjs node.js

我有一个从gulp命令行启动的AngularJS应用程序 并在端口3000上运行。

在这个应用程序中,因为它处于开发状态,我有一些像这样的http请求:

$http.get("http://localhost:8080/myapi/customers")
.then(function(response) {$scope.names = response.data.records;});

gulp脚本通过浏览器缩小,uglifies和同步更改。

myapi是使用此命令运行的NodeJS / Express简单应用程序:

node myapi.js

我想要实现的是给api的相对URL,而不是像这样提供完整的URL:

$http.get("/myapi/customers")
.then(function(response) {$scope.names = response.data.records;});

我该怎么做?我可以找到有关统一API和AngularJS应用程序域的资源。

此致

0 个答案:

没有答案