我在Firebase中创建了一个查询,并且我有uid作为数据,如果我有如下结构,如何改进查询以获取(name,surname)。
我只想要登录用户的数据。
我的代码是:
const v_uName = document.getElementById('id_nameU');
var v_userId = firebase.auth().currentUser.uid;
console.log(v_userId);
var v_ref1 = firebase.database().ref().child('/ad_persona/');
v_ref1.on('child_added', function(v_snap1){
v_ref1.child(v_snap1.key).on('child_added', function(v_snap2){
v_ref1.child(v_snap1.key).child(v_userId).on('value', function(v_snap3){
console.log(v_snap3.val());
});
});
});