I have an issue with angular digest loop. When I do a http call and put response in $scope, that var is not updated on view until next digest loop.
E.g. I have the folliwing call wrapped into function and button on view which calls function using ng-click. First time when I click the button, nothing is happened on view (http response sent and response is received). After clicking the button for the second time, view is updated with data from previus response and current response is updated after the next click etc...
$scope.loadItems = function(){
ItemService.getData().then(function(rsp) {
$scope.items = rsp.data;
});
}
ItemService.getData() is basically wrapping $http call:
getData : function(){
return $http({
method: 'GET',
url: '/api/items'
});
}
And html
<button ng-click="loadItems()">Load</button>
Thanks!
You need to change getData() to look like this:
and $scope.loadItems() to