有没有一种方法可以在React中使用ID在Firestore Connect中查询单个文档?

时间:2019-05-06 09:32:25

标签: reactjs react-redux google-cloud-firestore react-redux-firebase

我试图从集合中检索单个文档,但是当我尝试匹配ID时,它与之不匹配。

我尝试了各种语法并尝试了硬编码,但没有任何效果。该ID未匹配,当我尝试使用特定ID进行检索时未检索到任何数据

export default compose(
    connect(mapStateToProps, mapDispatchToProps),

    firestoreConnect(( props,state) => {

      return [
      { collection: 'texts', orderBy: ['date', 'desc'], where: [["uid","==", props.auth.uid], ["id", "==" ,props.match.params.post_id]]}

    ]}))(DetailTextView)


我想使用我拥有的特定ID返回集合中的特定文档。 谢谢您的时间

0 个答案:

没有答案