Angular controller scope not updating after jQuery ajax call

Disregarding other architectural issues I pointed out in the comments, the real issue is that you’re using jQuery‘s ajax instead of Angular’s $http. When you don’t do things like that through Angular, you’re working outside of Angular’s scope and it doesn’t know about changes. While not ideal, you can use $scope.$apply to let angular know something was updated outside of its knowledge. That would look like this:

$scope.$apply(function() {
  $scope.msgs = newMsgs;
});

That is telling Angular that you’ve modified something it needs to know about from a context that it doesn’t know about (the jQuery ajax call in this case).

There are some valid uses of $scope.$apply(), such as in event handlers, but most other times it is a sign of bad practices. You should definitely be using Angular’s $http for ajax calls.

Leave a Comment