Created
October 3, 2014 02:55
-
-
Save danswater/b9c51bb28193661bb2da to your computer and use it in GitHub Desktop.
Retrieving data in angularfire .$asArray()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// userservice promise | |
userService.$loaded().then( function ( c ) { | |
angular.forEach( c, function ( e ) { | |
console.log( e ); | |
} ) | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment