How to get data for Firebase

27 views
Skip to first unread message

rawan rakshash

unread,
Jun 22, 2016, 10:56:57 AM6/22/16
to Firebase Google Group
Hi,
I have use javascript to get the data for firebase database but didn't know how to get it. I used below code 

var rootRef = firebase.database().ref();
 console.log(rootRef);

But didn't get my data which I create in database of firebase get the below data
So can any one know how to get the data from database.

Mike Mcdonald

unread,
Jun 22, 2016, 11:14:09 AM6/22/16
to Firebase Google Group
Hi Rawan,

I'd take a look at the Retrieving Data web docs, which will guide you through getting data from the Realtime Database.

TL;DR:

rootRef.on('value', function(snapshot){
  console.log(snapshot.val());
});

Thanks,
--Mike
Reply all
Reply to author
Forward
0 new messages