मैं इस मुद्दे पर इतने लंबे समय से अटका हुआ हूं। मैंने सिर्फ प्रतिक्रिया-मूल-फायरबेस के साथ अपने प्रतिक्रिया-देशी आवेदन में फायरस्टार को लागू करना शुरू कर दिया। मैं केवल डॉक्स [ 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);
}
}
}
कोई भी सहायताकाफी प्रशंसनीय होगी!