Cloud Firestore支持是否反应天然



我当前将Firebase实时数据库用于我的反应移动应用程序,我一直在寻找一些提供更好查询功能的替代方案。Firestore的强调之一是其查询功能。我想检查Firestore是否支持React Native开箱即用。

react本地壁炉的10月3日版本包括云燃烧器支持。

首次通过支持新版本的云燃烧beta的支持,请参阅 http://invertase.link/firestore for Supp.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}`
  })

云firestore支持此处列出的多个框架:https://firebase.google.com/docs/firestore/library-integrations

此外,您可以使用诸如firestorter之类的库将firestore数据直接连接到您的反应组件:

https://github.com/ijzerenhein/firestorter

https://medium.com/@hrutjes/building-a-react-firestore-app-with-with-with-efort-effort-and-mobx-525df611eabf

您还可以使用转化酶的此框架;https://rnfirebase.io/docs/v3.3.x/getting-started

相关内容

  • 没有找到相关文章

最新更新