All Questions
Tagged with callback angular.js
3 questions
2
votes
1
answer
165
views
Handling success and failure when retrieving product information
I've got an Angular controller where I have two functions that are repeated inside two functions:
...
2
votes
1
answer
2k
views
Angular callback scope.apply
Usually the socket.io's on method is like this:
socket.on('/msg', function(data){});
But in Angular that callback has to be ...
1
vote
1
answer
5k
views
Using callbacks in a Restangular service
I have a project built with AngularJS and using Restangular in my services to handle API requests. The problem is I haven't found a good way to test the services which I think has turned into a bit of ...