gpt4 book ai didi

java - Android - 检索存储在 Cloud Firestore 文档中的自定义对象

转载 作者:太空狗 更新时间:2023-10-29 13:04:54 25 4
gpt4 key购买 nike

我按如下方式使用 Cloud Firestore:

enter image description here

“事件”集合包含使用唯一事件 ID 作为名称的文档。在这些文档中有许多“EventComment”对象——每个对象代表用户发表的评论。

要将“EventComment”对象添加到文档中,我使用以下方法:

EventComment mcomment = new EventComment();
mcomment.setComment("this is a comment");
Map<String, EventComment> eventMap = new HashMap<>();
eventMap.put(Long.toHexString(Double.doubleToLongBits(Math.random())), mcomment);

firestore.collection("events").document(event_id)
.set(eventMap, SetOptions.merge()).addOnCompleteListener(new OnCompleteListener<Void>() {
@Override
public void onComplete(@NonNull Task<Void> task) {
Toast.makeText(EventCommentsActivity.this, "ya bastud", Toast.LENGTH_SHORT).show();
}
});

我创建了一个字符串的 HashMap 和我的对象“EventComment”,然后在文档中设置它。

但是,当我想检索给定文档中包含的所有“EventComment”对象时,我不能将其转换为 EventComment 对象,即我不能这样做:

    DocumentReference docRef = db.collection("events").document("vvG17ZfcLFVna8");
docRef.get().addOnSuccessListener(new OnSuccessListener<DocumentSnapshot>() {
@Override
public void onSuccess(DocumentSnapshot documentSnapshot) {
EventComment comment = documentSnapshot.toObject(EventComment.class);
}
});

此外,尝试将 documentSnapshot 转换为 HashMap 会给出“未经检查的转换”消息,并最终完全失败。这个想法是使用评论来填充 RecyclerView。

我在想我可能需要重组我存储数据的方式?

如有任何建议,我们将不胜感激。

干杯

最佳答案

您猜对了,您需要重构存储数据的方式。我这么说是因为您在实际数据库中存储 typeEventComment 对象的方式不正确。正如您在有关 Quotas and Limits 的官方文档中看到的那样,文档的最大大小为 1MiB。因此,如果您继续这样存储数据,您将在很短的时间内达到 1MiB 的限制。

请记住,Cloud Firestore 针对存储大量小型文档进行了优化。为了解决这个问题,我建议您像这样更改数据库结构:

Firestore-root
|
--- events (collection)
| |
| --- eventId (document)
| | |
| | --- //event details
| |
| --- eventId (document)
| |
| --- //event details
|
--- comments (collection)
|
--- eventId (document)
|
--- eventComments (collection)
|
--- eventCommentId (document)
| |
| --- //event comment details
|
--- eventCommentId (document)
|
--- //event comment details

如您所见,EventComment 类型的每个对象都作为单独的文档添加到 events 集合中。为了读取所有事件对象,请使用以下代码:

DocumentReference docRef = db.collection("events");
docRef.get().addOnSuccessListener(new OnSuccessListener<DocumentSnapshot>() {
@Override
public void onSuccess(DocumentSnapshot documentSnapshot) {
EventComment comment = documentSnapshot.toObject(EventComment.class);
}
});

编辑:

如果您想要一个给定 eventId 的 commnets 列表,请再次查看上面的数据库结构,看看它是如何表示的。如您所见,我添加了一个名为 comments 的新集合,其中给定 eventId 中的每个新评论也存储为单独的文档。我想出了这个结构来避免嵌套映射。

有兴趣的可以看看我的一个 tutorials 我在其中逐步解释了如何构建应用程序所需的数据库。

关于java - Android - 检索存储在 Cloud Firestore 文档中的自定义对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49621231/

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