React-Native-Firebase (v6) Firestore'dan veri alınamıyor: undefined bir işlev değil ('… this._firestore.native.collectionGet…' yakınında)


11

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!


1
Bende aynı hatayı alıyorum. Herhangi bir yardım mutluluk duyacağız.
Yanan Suaygırı

@BurningHippo Bu yüzden sadece modülleri kaldırdım / yeniden kurdum ve tekrar 'reat-native run-android' yaptım ve şimdi çalışıyor. idk man lol
Akshat Jain

1
Bende aynı hatayı alıyorum. Modülü yeniden kurmak benim için çalışmadı.
Mohit Bhansali

Yanıtlar:


2

Bu hata, yerel RNFirestore modülü eksik olduğu için oluşur.

Sonra yarn @react-native-firebase/firestoreçalıştırmak için gereken pod installve tetikleyen bir ile yeniden react-native run-ios.


1

Sorgularınız yanlış olduğundan iyi bir firebase / Firestore kurulumunuz varsa, bunun gibi bir şeyle test edebilirsiniz:

import firestore from '@react-native-firebase/firestore';

firestore()
  .collection('collection')
  .onSnapshot((querySnapshot) => {
     console.log(querySnapshot)
  })
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.