在firebase的控制台中未更新

时间:2019-08-26 17:30:05

标签: firebase firebase-realtime-database firebase-console

我正在尝试更新我的Firebase,但未显示我更新的内容 这是我的firebase数据:

enter image description here

然后我导出了数据:

enter image description here

然后我更新并添加了另一个类:

enter image description here

并返回一条消息均已更新:

enter image description here

但是问题是我的数据没有更新并保留在同一数据中:

enter image description here

这是我的规则:

enter image description here

请帮助我了解什么以及为什么我无法成功更新

非常感谢

1 个答案:

答案 0 :(得分:0)

Firebase会自动为您写入的任何值创建密钥,并且会自动删除其下不再包含任何值的密钥。

由于您没有为game键指定任何值,因此添加后会立即将其删除。

如果要确保在导入JSON时写入密钥,请确保为其提供一个值。例如

"game": true

但是请注意,您不需要像这样预先创建密钥,因为当您的应用在其下面的某个位置写入值时,Firebase会自动创建game密钥。