gpt4 book ai didi

android - 如何生成 firebase uid

转载 作者:行者123 更新时间:2023-11-29 14:30:34 33 4
gpt4 key购买 nike

我正在尝试将数据(不是用户)存储在 Firebase 后端。如何生成 Firebase 唯一标识符并将其存储在 child 中?我一直在使用 firebase(DatabaseReference 键)作为记录的唯一标识符,但键为空。

最佳答案

您可以使用push().getKey() 获取唯一 key

FirebaseDatabase database = FirebaseDatabase.getInstance();
String key = database.getReference("todoList").push().getKey();

Map<String, Object> childUpdates = new HashMap<>();
childUpdates.put( key, todo.toFirebaseObject());
database.getReference("todoList").updateChildren(childUpdates, new DatabaseReference.CompletionListener() {
@Override
public void onComplete(DatabaseError databaseError, DatabaseReference databaseReference) {
if (databaseError == null) {

}
}
});

这在 docs 中有解释在更新特定字段部分

This example uses push() to create a post in the node containing posts for all users at /posts/$postid and simultaneously retrieve the key with getKey(). The key can then be used to create a second entry in the user's posts at /user-posts/$userid/$postid.

关于android - 如何生成 firebase uid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37788761/

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