Advertisement
Guest User

Untitled

a guest
Aug 19th, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. {
  2. "crisoftcalendar" : {
  3. "usuarios" : {
  4. "-Jx3DKK8QsWGzdfowdAR" : {
  5. "listaUsuario" : [ {
  6. "nombre" : "hijo1 prueba",
  7. "usuario" : "hijo1mauricio@email.com"
  8. }, {
  9. "nombre" : "hijo2 prueba",
  10. "usuario" : "hijo2mauricio@email.com"
  11. } ],
  12. "nombre" : "prueba",
  13. "usuario" : "mauricio@email.com"
  14. }
  15. }
  16. }
  17. }
  18.  
  19. ref2.startAt('mauricio@email.com').endAt('mauricio@email.com').on('value', function(snap) {
  20. console.log("name '" + snap.key() + "' val = " + snap.val());
  21. snap.forEach(function(data) {
  22. console.log("clave '" + data.key() + "'' valor = " + data.val().usuario);
  23. });
  24. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement