Would like to get the return object from an HTTP request into another scope object so I can use it in HTML with ng-repeat directive. How can I get the returned object into a variable?
- Call HTTP Function
- Get Data
- Store response
- Make scope variable the value of the HTTP response
JS:
angular.module('myApp').controller('ItemController',[
  '$scope', '$http', '$location',
  function($scope, $http, $location){
  var currentLocation = $location.path();
   $scope.getItem = function(){
      $http.get('path/to/json/file.json').then(
        function(response){
          $scope.results = response.data;
          console.log('item controller, item:', $scope.results);
        });
    };
    $scope.item = //MAKE THIS VALUE OF THE RETURN OBJECT FROM getItem
      console.log('scope.item', $scope.item);
    }
]);
JSON
[
  {
    "first_name": "Mega",
    "last_name": "Man",
    "image": "http://placehold.it/75x75"
  }
]
HTML
Would like to be able to just have
<p>{{item.first_name}}</p>
<p>{{item.last_name}}</p>
<img ng-src="{{item.image}}"/>
Updated JS Call
$scope.getItem = function(){
    $http.get('path/to/json/file.json')
    .success(function(data){
      $scope.results=data;
      console.log('$scope.results: ',$scope.results);
    }).error(function(data){
      console.log(data);
    }).then(
      function(){
        $scope.item = $scope.results;
        console.log('$scope.item: ', $scope.results);
      });
  };
 
    