আমি এত দিন এই সমস্যাটিতে আটকে আছি। আমি কেবল প্রতিক্রিয়া নেটিভ-ফায়ারবেস দিয়ে আমার প্রতিক্রিয়া-নেটিভ অ্যাপ্লিকেশনটিতে ফায়ার স্টোর প্রয়োগ করা শুরু করেছি। আমি কেবল ডকস [ https://invertase.io/oss/react-native-firebase/v6/firestore/quick-start#reading-data] অনুসরণ করছি তবে এটি আমার পক্ষে কার্যকর হয় না।
এটি অ্যান্ড্রয়েডে। আইওএস-এ এখনও পরীক্ষা করা হয়নি।
আমি এই ত্রুটিটি পেতে থাকি:
[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);
}
}
}
কোন সাহায্যের অনেক প্রশংসা হবে!