Sono stato bloccato su questo problema per così tanto tempo. Ho appena iniziato a implementare Firestore nella mia applicazione Reazione-nativo con Reazione-nativo-Firebase. Sto solo seguendo i documenti [ https://invertase.io/oss/react-native-firebase/v6/firestore/quick-start#reading-data] ma non funziona per me.
Questo è in Android. Non ho ancora testato su iOS.
Continuo a ricevere questo errore:
[TypeError: undefined is not a function (near '...this._firestore.native.collectionGet...')]
Ecco il codice pertinente:
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);
}
}
}
Qualsiasi aiuto sarebbe molto apprezzato!