图像显示我的firebase data.i需要从firebase获取黄色圆形数据。使用entryId作为键('BWO4D')。
上图中的显示我的firebase data.data,其中包含entry,lotid,entryid作为我的firebase子数据。 如何使用javascript从firebase获取黄色数据。
答案 0 :(得分:0)
var db = firebase.database();
db.ref.child('entry').child('1').child('BWO4D').once('value').then(function(snap) {
if (snap.val()) {
console.log(snap.val().duration);
}
else {
console.log('BWO4D not found');
}
}, function(error) {
// The Promise was rejected.
console.log('mal-funk-shun');
});
答案 1 :(得分:0)
试试这个
var db = firebase.database().ref();
db.child('entry').child('1').child('BWO4D').once('value').then(function(snap) {
if (snap.val()) {
console.log(snap.val().duration);
}
else {
console.log('BWO4D not found');
}
}, function(error) {
// The Promise was rejected.
console.log('mal-funk-shun');
});
请参阅我的jsfiddle示例。 Retrieving data from firebase