我有一个类似下面提到的数据库。我的目标是从Shout列表中获取所有回复ID,然后在“回复”列表中迭代这些ID以获取相关的相关回复项。
execute_process
我正在尝试以下代码:
{
"Shouts": {
"-KO9z16mjjr6H-03l5WA": {
"type": "apartment",
"name": "Regent",
"Reply": {
"-KO9xDuj_Dt05954Qmp0": "True"
}
}
}
"Reply": {
"-KO9xDuj_Dt05954Qmp0": {
"Name": "Arbit",
"Message": "Random digit"
}
}
}
当我做项目['key']时,我无法获得Key。当我打印console.log(item)时,它只给出相关回复的值。但不是关键。同样在chrome中我得到错误“Uncaught(in promise):TypeError:无法分配给只读属性'key'”。在Firebase中,错误不在那里,但我仍然没有得到密钥。