-
How to Read Data from Firebase in NoSQL?
about 1 year ago
-
9 months ago
After Login, you will get a User uid, by this id you can get logged in user detail from firebase realtime database, here is the example :-
db.ref("users/"+uid).on("value", function (snapshot) {
console.log(snapshot.val());
});
-
1 Answer(s)