本文介绍了Firebase添加一个新节点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何将这些节点放置在一个用户节点内,并制作另一个节点来存储帖子.我的数据库参考:
How to put these nodes inside a users node and make another one to store posts.My database reference:
databaseReference.child(user.getUid()).setValue(userInformations);
推荐答案
您需要使用以下代码:
databaseReference.child("Users").child(user.getUid()).setValue(userInformations);
这意味着所有这些对象都将托管在Users
节点内.请添加新的child("Users")
.同样,您也需要使用这些帖子.
This means that all those objects will be hosted within the Users
node. Please the new child("Users")
added. In the same way you need to use for the posts.
这篇关于Firebase添加一个新节点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!