我目前使用Firebase实时数据库用于我的本机反应移动应用程序,我一直在寻找一些提供更好查询功能的替代方案。 Firestore的一个优点是它的查询功能。我想检查Firestore是否支持React Native。
答案 0 :(得分:8)
10月3日发布的React Native Firebase包括Cloud Firestore支持。
首先支持新发布的Cloud Firestore测试版,请参阅 http://invertase.link/firestore用于支持的api。
import firebase from 'react-native-firebase';
firebase.firestore()
.collection('posts')
.add({
title: 'Amazing post',
})
.then(() => {
// Document added to collection and ID generated
// Will have path: `posts/{generatedId}`
})
答案 1 :(得分:1)
Cloud firestore支持此处列出的多个框架: https://firebase.google.com/docs/firestore/library-integrations
答案 2 :(得分:0)
此外,您可以使用Firestorter等库将Firestore数据直接挂接到React组件:
https://github.com/IjzerenHein/firestorter
https://medium.com/@hrutjes/building-a-react-firestore-app-with-zero-effort-and-mobx-525df611eabf
答案 3 :(得分:0)
您也可以使用来自转化酶的这个框架; https://rnfirebase.io/docs/v3.3.x/getting-started