Tak długo utknąłem w tej sprawie. Właśnie zacząłem wdrażać Firestore w mojej aplikacji Reaktywna-rodzima z Reaktywną-Podstawowa-Firebase Po prostu śledzę dokumenty [ https://invertase.io/oss/react-native-firebase/v6/firestore/quick-start#reading-data], ale to nie działa dla mnie.
To jest w Androidzie. Nie testowałem jeszcze w iOS.
Wciąż pojawia się ten błąd:
[TypeError: undefined is not a function (near '...this._firestore.native.collectionGet...')]
Oto odpowiedni kod:
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);
}
}
}
Każda pomoc będzie mile widziana!