gpt4 book ai didi

java - 访问 Firebase 中的 key

转载 作者:行者123 更新时间:2023-12-04 10:57:35 25 4
gpt4 key购买 nike

关闭。这个问题需要details or clarity .它目前不接受答案。












想改善这个问题吗?通过 editing this post 添加详细信息并澄清问题.

1年前关闭。




Improve this question




我一直在尝试检索和修改下面的文件。我想将“评级”从 0 更改为 5,但是,我不知道如何访问 key 文件。

enter image description here

最佳答案

更改 rating您可以使用的值 updateChildren() :

DatabaseReference mDatabase = FirebaseDatabase.getInstance().getReference("all_uploaded_image");
Map<String, Object> childUpdates = new HashMap<>();
childUpdates.put("rating", 5);

mDatabase.child("-Luk55E0wNUE9bXk_pZ0").updateChildren(childUpdates);

To simultaneously write to specific children of a node without overwriting other child nodes, use the updateChildren() method.



更多信息在这里:

https://firebase.google.com/docs/database/android/read-and-write#update_specific_fields

关于java - 访问 Firebase 中的 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59084353/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com