Firebase Firestore:如何在 Android 上将文档对象转换为 POJO

Posted

技术标签:

【中文标题】Firebase Firestore:如何在 Android 上将文档对象转换为 POJO【英文标题】:Firebase Firestore : How to convert document object to a POJO on Android 【发布时间】:2018-03-20 05:55:12 【问题描述】:

使用实时数据库,可以做到这一点:

MyPojo pojo  = dataSnapshot.getValue(MyPojo.Class);

作为一种映射对象的方式,如何使用Firestore 做到这一点?

代码:

FirebaseFirestore db = FirebaseFirestore.getInstance();
        db.collection("app/users/" + uid).document("notifications").get().addOnCompleteListener(task -> 
            if (task.isSuccessful()) 
                DocumentSnapshot document = task.getResult();
                if (document != null) 
                    NotifPojo notifPojo = document....// here
                    return;
                

             else 
                Log.d("FragNotif", "get failed with ", task.getException());
            
        );

【问题讨论】:

【参考方案1】:

Java

    DocumentSnapshot document = future.get();
if (document.exists()) 
    // convert document to POJO
    NotifPojo notifPojo = document.toObject(NotifPojo.class);
 

科特林

 val document = future.get()
 if (document.exists()) 
    // convert document to POJO
     val notifPojo = document.toObject(NotifPojo::class.java)
  

请务必记住,您必须提供默认构造函数,否则您将遇到经典的反序列化错误。对于 JavaNotif() 就足够了。对于 Kotlin 初始化您的属性。

【讨论】:

初始化我的数据类的属性是我的关键。我有一个未初始化的参数。感谢您指出这一点。【参考方案2】:

不确定这是否是最好的方法,但这是我目前所拥有的。

NotifPojo notifPojo = new Gson().fromJson(document.getData().toString(), NotifPojo.class);

编辑:我现在正在使用已接受答案中的内容。

【讨论】:

【参考方案3】:

使用DocumentSnapshot,您可以:

DocumentSnapshot document = future.get();
if (document.exists()) 
    // convert document to POJO
    NotifPojo notifPojo = document.toObject(NotifPojo.class);

【讨论】:

这会带走文档ID吗? 知道这使用的是哪种反序列化器吗?如果可能的话,我想在我的 pojo 中为反序列化器配置一些指令。有点像杰克逊提供的。我正在尝试反序列化为枚举 我找到了保留文档 ID 的答案:***.com/a/46999773/2529315

以上是关于Firebase Firestore:如何在 Android 上将文档对象转换为 POJO的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Flutter 中使用 Firebase Auth 和 Firestore

如何将图像上传到firebase存储然后将图像url存储在firestore中?

如何使用firebase-admin在firestore中将日期保存为时间戳?

如何在 Firebase Firestore 中获取内部集合

如何在 Swift 上将具有自定义 ID 的文档添加到 Firebase (Firestore)

如何将我的 Firebase 实时数据库转移到 Firebase Cloud Firestore