我已经在这个问题上停留了很长时间。我刚刚开始使用react-native-firebase在我的react-native应用程序中实现Firestore。我只是关注文档[ 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);
}
}
}
任何帮助将非常感激!
1
我遇到了同样的错误。任何帮助,将不胜感激。
—
燃烧河马
@BurningHippo因此,我刚刚卸载/重新安装了模块,并再次执行了“ react-native run-android”,现在它可以工作了。idk man哈哈
—
Akshat Jain
我遇到了同样的错误。重新安装模块对我不起作用。
—
Mohit Bhansali,