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

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

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

有了一个,你可以做:DocumentSnapshot

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

答案 2

爪哇岛

    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)
  }

请务必记住,您必须提供默认构造函数,否则将出现经典的反序列化错误。对于Java来说,一个应该就足够了。对于 Kotlin 初始化您的属性。Notif() {}


推荐