Skip to main content

All Questions

1 vote
1 answer
83 views

Chaining three promises in Angular.JS

I have demonstrated promise chaining where promise's p1,p2,p3 has to be resolved synchronously. The code below is using angular.js 1, and here P3 is resolved then P2 and then P1. ...
Rahul Shivsharan's user avatar
3 votes
1 answer
623 views

Returning the results of four $resource calls as a JSON array in AngularJS

Title pretty much says it. I need a way to elegantly handle multiple $resource calls in AngularJS. Right now, I just calling each other call on the ...
Jimenemex's user avatar
  • 185
2 votes
1 answer
484 views

User registration factory for AngularJS + Firebase app

The goal for this code is to provide a semi-secure and privileged method of user registration via a secret code that is stored as a key in the Firebase database. Subscribers to a mailing list were ...
Mox's user avatar
  • 257
4 votes
1 answer
228 views

Angular using defer and services

I have wrote some service in AngularJS that use defer, can you check my code and tell me if I getting it right? Service (I dont really like name: ...
rechandler's user avatar
6 votes
1 answer
3k views

Asynchronous iterator for AngularJS

I wrote this as a convenient way to batch together multiple, repetitive AJAX calls. I was working in angular at the time, so I use the $q service, but I'm sure it ...
Chris's user avatar
  • 163
3 votes
2 answers
3k views

Handling errors of nested promises

This is in one of my AngularJS controllers: ...
CodeVirtuoso's user avatar
22 votes
1 answer
15k views

Simple Async Google Maps initializer with AngularJS

Here is a simple reusable AngularJS factory I came up with to initialize Google Maps Asynchronously, which somehow does not seem ...
Dmitri Zaitsev's user avatar