快递应用程序内部服务器错误

时间:2017-08-26 15:53:29

标签: angularjs node.js express

我正在开发一款平均应用。我使用快速生成器为脚手架快速和角度发生器为客户端。快递在端口3000上运行,角度应用程序在9000上运行。我在快递API上对angular做了一个http请求,得到了500个错误代码。

express中的api端点如下:

router.get('/fabric', function(req,res,next){
  res.send(data);
});

控制器:

angular.module('poshaqDemoApp')
  .controller('MainCtrl', function ($scope, $http) {
    $http.get('http://localhost:3000/fabric')
    .then(function(response){
      $scope.awesomeThings= response.data;
    });
  });

两者都独立运行,我不明白为什么会出现这个错误

控制台 enter image description here

0 个答案:

没有答案