这是代码
ref = firebase.database().ref('Titlu/titlu1');
this.ref.once("value")
.then(function(snapshot) {
var key = snapshot.key; // "ada"
var childKey = snapshot.child("titlu1/Acesta este titlu").key; // "last"
console.log(childKey);
});