Angularjs: View Data Doesn't Update After Async Call
I am using a 3rd party js library to make http requests to their api. I perform this operation on every keystroke in an input field using 'ng-keyup'. After the call to there api re
Solution 1:
Looks like your callback might be executing outside of angular context. Try calling $scope.$apply()
in async callback. If that's not the issue, post some code please :)
Post a Comment for "Angularjs: View Data Doesn't Update After Async Call"