Uzun süredir bu konuda takılı kalıyorum. Reac-native-firebase ile reaksiyona-özgü uygulamamda Firestore'u uygulamaya başladım. Sadece [ https://invertase.io/oss/react-native-firebase/v6/firestore/quick-start#reading-data] dokümanlarını takip ediyorum ama benim için çalışmıyor.
Bu Android'de. Henüz iOS'ta test etmedim.
Bu hatayı almaya devam ediyorum:
[TypeError: undefined is not a function (near '...this._firestore.native.collectionGet...')]
İlgili 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);
}
}
}
Herhangi bir yardım çok takdir edilecektir!