首页 > 解决方案 > React Native Firestore 从帖子中获取评论

问题描述

所以我有收藏评论、收藏用户和收藏帖子。如何查询 firestore 以便在我的提要屏幕上获得帖子和 ITS 评论?如果需要,我可以支付帮助。我的收藏评论有一个名为“postId”的字段来帮助解决这个问题,我的收藏帖子也有一个字段“userHandle”来帮助解决这个问题。但是怎么做这个查询呢?

标签: react-nativegoogle-cloud-firestore

解决方案


要查询您的评论集合,您可以执行以下操作。

const postId = "y7FN13SKWUDsWdKsGJiT" // example id of a post document
firestore()
  .collection('comments')
  // Filter results
  .where('postId', '==', postId)
  .get()
  .then(querySnapshot => {
    if (querySnapshot.exists) {
      // Do something with the data
    }
  });

这将检索postId字段等于您传入的值的所有评论文档。


推荐阅读