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
同じエラーが発生します。任意の助けいただければ幸いです。
Burning Hippo

@BurningHippoだから、私はモジュールをアンインストール/再インストールし、「react-native run-android」をもう一度実行しただけで機能します。
idk

1
同じエラーが発生します。モジュールを再インストールしてもうまくいきませんでした。
Mohit Bhansali、

回答:


2

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

を使用して再構築yarn @react-native-firebase/firestoreを実行pod installおよびトリガーする必要がある場合react-native run-ios


1

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

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

firestore()
  .collection('collection')
  .onSnapshot((querySnapshot) => {
     console.log(querySnapshot)
  })
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.