0
如何通過Firebase管理訪問深層數據?通過Firebase管理訪問深層數據管理
數據:
{
"keyboards": {
"StartKeyboard": [
"KeyboardA",
"KeyboardB",
"KeyboardC"
],
"SecendKeyboard": {
"parent": "StartKeyboard",
"childs": [ //*** I need to get this childs: [] ***
"Keyboard1",
"Keyboard2",
"Keyboard3"
]
}
}
}
當我使用下面的代碼,我在輸出的所有數據
const ref = db.ref('/'); All Data
ref.on("value", function (snapshot) {
console.log(snapshot.val());
});
當我使用下面的代碼,我在輸出的keyboards
孩子的
const ref = db.ref('keyboards'); // inside of Keyboards
ref.on("value", function (snapshot) {
console.log(snapshot.val());
});
但我不知道如何獲得childs
的SecendKeyboard
/childs
。 我的意思是Keyboard1
和Keyboard2
和Keyboard3
的陣列。 謝謝。