Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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);
    }
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #check #item #registered #angular #angularfire
ADD COMMENT
Topic
Name
4+4 =