私はこの問題に長い間行き詰っています。私は、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
同じエラーが発生します。モジュールを再インストールしてもうまくいきませんでした。
—
Mohit Bhansali、