There
are different types of event available in the Firebase and some of the below even
looks like -
Example for child added Event–
Example for child changed Event –
Example for child removed Event –
Stayed Informed - Firebase Tutorial for Android and IOS
I hope you are enjoying with this post! Please share with you friends. Thank you so much!
1.
child_added
event
2.
child_changed
event
3.
child_removed event
Example for child added Event–
var
usersRef = firebase.database().ref("users/");
usersRef.orderByChild("name").startAt("Anil").on("child_added",
function(result)
{
console.log("Start
at filter - " + result.val().name);
});
Example for child changed Event –
var
usersRef = firebase.database().ref("users/");
usersRef.on("child_changed",
function(result)
{
var user
= result.val();
console.log("The
updated user name is - " + result.name);
});
Example for child removed Event –
var
usersRef = firebase.database().ref("users/");
users.on("child_removed",
function(result)
{
var user
= result.val();
console.log(user.name
+ " has been deleted.");
});
Stayed Informed - Firebase Tutorial for Android and IOS
I hope you are enjoying with this post! Please share with you friends. Thank you so much!