It is possible to get data from Firebase database from Javascript (WEB) directly in JSON format ?
Currently I'm using this function and I must to parse all data and convert it to JSON array
firebase.database().ref('posts/').once('value', function(snap){
snap.forEach(function(obj){
console.log(obj.val());
// Parsing obj and saving to JSON array ...
})
})
It would be nice if I can get data directly in JSON format (like in Firebase console).
It is possible to get data from Firebase database from Javascript (WEB) directly in JSON format ?
Currently I'm using this function and I must to parse all data and convert it to JSON array
firebase.database().ref('posts/').once('value', function(snap){
snap.forEach(function(obj){
console.log(obj.val());
// Parsing obj and saving to JSON array ...
})
})
It would be nice if I can get data directly in JSON format (like in Firebase console).
Share Improve this question asked Aug 2, 2016 at 16:45 DannyDanny 6922 gold badges11 silver badges21 bronze badges1 Answer
Reset to default 6What if you just JSON.stringify()
it? Does that get you what you're looking for?
firebase.database().ref('posts/').once('value', function(snap){
console.log(JSON.stringify(snap.val()))
})