Skip to content

Instantly share code, notes, and snippets.

@topspinppy
Last active December 2, 2017 17:59
Show Gist options
  • Save topspinppy/59f945ccf2ec98cb49c90da841fe0698 to your computer and use it in GitHub Desktop.
Save topspinppy/59f945ccf2ec98cb49c90da841fe0698 to your computer and use it in GitHub Desktop.
var firebaseRef = firebase.database().ref("ใส่ Root ลงไป");
firebaseRef.once('value').then(function(dataSnapshot) {
console.log(dataSnapshot.key); //เอา Key ของ JSON ออกมาแสดง
console.log(dataSnapshot.val()); //เอา Value ของ JSON ออกมาแสดง
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment