无法从React-Native-Firebase(v6)Firestore获取数据:undefined不是函数(在'... this._firestore.native.collectionGet ...附近)


11

我已经在这个问题上停留了很长时间。我刚刚开始使用react-native-firebase在我的react-native应用程序中实现Firestore。我只是关注文档[ https://invertase.io/oss/react-native-firebase/v6/firestore/quick-start#reading-data],但它对我不起作用。

这是在Android中。尚未在iOS中进行测试。

我不断收到此错误:

[TypeError: undefined is not a function (near '...this._firestore.native.collectionGet...')]

以下是相关代码:

import React, {Component} from 'react';
import { firebase } from '@react-native-firebase/firestore';

export default App extends Component{
  constructor(props) {
    super(props);

    this.getData= this.getData.bind(this)
    this.getData()

    this.state = {};
  }

  async getData() {
    try {
      const querySnapshot = await firebase.firestore()
      .collection('Gyms')
      .get() //error with this

      console.log('Documents', querySnapshot.docs);

    } catch (e) {
      console.log(e);
    }
  }
}

任何帮助将非常感激!


1
我遇到了同样的错误。任何帮助,将不胜感激。
燃烧河马

@BurningHippo因此,我刚刚卸载/重新安装了模块,并再次执行了“ react-native run-android”,现在它可以工作了。idk man哈哈
Akshat Jain

1
我遇到了同样的错误。重新安装模块对我不起作用。
Mohit Bhansali,

Answers:


2

发生此错误是因为缺少本机RNFirestore模块。

yarn @react-native-firebase/firestore您需要运行pod install并触发重建之后react-native run-ios


1

如果您具有良好的firebase / Firestore设置,那是因为您的查询为假,则可以使用以下方法进行测试:

import firestore from '@react-native-firebase/firestore';

firestore()
  .collection('collection')
  .onSnapshot((querySnapshot) => {
     console.log(querySnapshot)
  })
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.