1

我正在尝试在 Rails 应用程序中向我的一条路线发出(我的第一个)角度获取请求。我不确定为什么这没有返回任何内容,甚至没有返回错误。

function accomplishmentController($scope, $http) { 

$scope.$apply(function() { 
  $http({method: 'GET', url: '/api/users'}).
  success(function(data, status, headers, config) {
    console.log("hell0");
  }).
  error(function(data, status, headers, config) {
    console.log("error");
  });
});
$scope.accomplishments = [];
$scope.submit = function() {
  $scope.accomplishments.unshift({ name: $scope.newAccomp, count: 0 });
  $scope.newAccomp = '';
}
$scope.addToCount = function() {
  var currentcount = this.accomp.count;
  this.accomp.count = currentcount + 1;
}
$scope.delete = function() {
  index = this.$index;
  $scope.accomplishments.splice(index, 1)
}

}

4

0 回答 0