check if item is already registered in angular angularfire site:stackoverflow.com code example
Example 1: check if item is already registered in angular angularfire site:stackoverflow.com
firebase.database().ref(`users/${userId}/email`).once("value", snapshot => {
if (snapshot.exists()){
console.log("exists!");
const email = snapshot.val();
}
});
Example 2: check if item is already registered in angular angularfire site:stackoverflow.com
ref.child("users").orderByChild("ID").equalTo("U1EL5623").once("value",snapshot => {
if (snapshot.exists()){
const userData = snapshot.val();
console.log("exists!", userData);
}
});