web-dev-qa-db-ja.com

React-Native-Firebase(v6)Firestoreからデータを取得できません:undefinedは関数ではありません( '... this._firestore.native.collectionGet ...'の近く)

私はこの問題に長い間行き詰っています。私は、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);
    }
  }
}


どんな助けでも大歓迎です!

11
Akshat Jain

Firebase/Firestoreが適切に設定されていて、クエリがfalseであることが原因である場合は、次のようなものでテストできます。

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

firestore()
  .collection('collection')
  .onSnapshot((querySnapshot) => {
     console.log(querySnapshot)
  })
1
Dako Junior

このエラーは、ネイティブのRNFirestoreモジュールがないために発生します。

yarn @react-native-firebase/firestoreの後で、pod installを実行し、react-native run-iosを使用して再構築をトリガーする必要があります。

1
Petrus Theron