0

$http サービスを使用して、json データを返すサーバーを呼び出しています。ただし、json データを要求するたびに、$http サービスが複数回実行されています。何が問題なのかわかりません。plz ヘルプ。前もって感謝します。以下は私のコードです。

       var app = angular.module('Demo',[]);

       app.config(function ($routeProvider) {
       $routeProvider
    .when('/users',
    {
        templateUrl: "users.html",
        controller: "users"
    }

    ).when('/users/new',
    {
        templateUrl: 'new.html',
        controller : 'newuser'
    }).when('/users/:id/edit',
    {
        templateUrl: 'edit.html',
        controller: 'edit'
    })
    });


     app.controller('users',function($scope,$http){
     $scope.list_of_users = [];
     $http.get('http://testing.com:3000        /users.json').success(function(data,status,header,config){
    angular.copy(data,$scope.list_of_users)
     })
    });

   app.controller('newuser',function($scope,$http,$location){
    $scope.done = function(){
    var data = {user: {name: $scope.name}};
    $http.post("http://testing.com:3000/users.json",data).success(function(data,status,header,config){
        $location.path('/users');
    }).error(function(data,stauts,header,confi){
        });
        };
     });

   app.controller('edit',function($scope,$http,$routeParams,$location){
    $scope.name="";
    $http.get("http://testing.com/users/"+$routeParams.id +".json").success(function(data,status,header,config){
        console.log(data);
      $scope.name = data['user']['name'];
    });
   $scope.update = function(){
       var data = {user: {name:  $scope.name}};
       $http.put('http://localhost:3000/users/$routeParams.id',data).success(function(data,status,header,config){
             $location.path("/users");
       }).error(function(data,status,header,config){

           });
   }
   });
4

1 に答える 1