方法无法加载资源:服务器响应状态为404未找到?

时间:2017-04-23 07:13:35

标签: angularjs

这是我的代码:     问题angular无法加载资源:服务器响应状态为404(未找到)

app.controller("allFarmerCtrl",function($scope,$http){

  $scope.perPage = "50";
  $scope.allFarmers = [];
  $scope.reverse = false;

  var where = {
    table : "farmer"
  };


  $http({
    method : "POST",
    url : url + "read",
    data : where
  }).success(function(response){
    if(response.length>0){
      angular.forEach(response,function(values , index){
         values['sl'] = index+1;
         $scope.allFarmers.push(values);
      });     
    }else{
      $scope.allFarmers = [];
    }

    console.log($scope.allFarmers);
  });
});

1 个答案:

答案 0 :(得分:0)

如果您使用的是实时服务器扩展,您可以通过在浏览器中创建的 url 后放置 / 来解决它。 例如,您可以将 index.html 修改为 index.html/