作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将数据(不是用户)存储在 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/
我是一名优秀的程序员,十分优秀!