私はこの問題に長い間行き詰っています。私は、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);
}
}
}
どんな助けでも大歓迎です!
Firebase/Firestoreが適切に設定されていて、クエリがfalseであることが原因である場合は、次のようなものでテストできます。
import firestore from '@react-native-firebase/firestore';
firestore()
.collection('collection')
.onSnapshot((querySnapshot) => {
console.log(querySnapshot)
})
このエラーは、ネイティブのRNFirestoreモジュールがないために発生します。
yarn @react-native-firebase/firestore
の後で、pod install
を実行し、react-native run-ios
を使用して再構築をトリガーする必要があります。