我目前在我的 react-native 移动应用程序中使用 Firebase 实时数据库,并且我一直在寻找一些能够提供更好查询功能的替代方案。Firestore 的优势之一是它的查询功能。我想检查 Firestore 是否支持开箱即用的 React Native。
问问题
3157 次
4 回答
8
React Native Firebase的 10 月 3 日版本包括 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}`
})
于 2017-10-06T02:52:39.957 回答
1
Cloud firestore 支持此处列出的多个框架: https ://firebase.google.com/docs/firestore/library-integrations
于 2018-03-24T05:15:53.737 回答
0
此外,您可以使用 Firestorter 之类的库将您的 Firestore 数据直接连接到您的 React 组件:
https://github.com/IjzerenHein/firestorter
https://medium.com/@hrutjes/building-a-react-firestore-app-with-zero-effort-and-mobx-525df611eabf
于 2018-01-03T18:30:26.680 回答
0
您也可以使用来自 invertase 的这个框架; https://rnfirebase.io/docs/v3.3.x/getting-started
于 2018-04-05T14:32:20.793 回答