Answers for "firebase search into every child"

0

firebase search into every child

ref.child('users').orderByChild('name').equalTo('John Doe').on("value", function(snapshot) {
    console.log(snapshot.val());
    snapshot.forEach(function(data) {
        console.log(data.key);
    });
});
Posted by: Guest on September-21-2020

Code answers related to "firebase search into every child"

Browse Popular Code Answers by Language