如何在 flutter 上使用 faunaDB?

How can I use faunaDB on the flutter?

作为 FaunaDB documentation, it seems that there is no dart API nor REST API. Also, I can't find the FaunaDB package in the Flutter Packages

有没有办法在flutter上使用FaunaDB?

目前我们不为 flutter 提供第一方支持。如果愿意,您可以基于我们当前的开源驱动程序为 Dart 构建第三方驱动程序。他们确实在幕后使用 json/http 。如果您的目标是 android,另一种选择可能是分叉 java 驱动程序并将 http 客户端切换为 android 友好并使用平台通道。

Dart 能够使用 javascript 库 How to use JavaScript libraries in your Dart applications

您可以简单地使用 javascript 驱动程序 https://github.com/fauna/faunadb-js

https://medium.com/flutter-community/building-a-simple-application-with-flutter-and-graphql-5786764df102

我认为将 Flutter 与 FaunaDB is to use FaunaDB's GraphQL interface and Dart package graphql_flutter 一起使用是最简单的方法。

我最近设法使用 graphql_flutter 从 FaunaDB 读取数据,并会在我对其进行更多测试后更新此 post。

最近发布了一个新包,可以帮助您将 faunaDB 与 dart/flutter 一起使用:faunadb_http 该库还提供了与 FQL 函数非常相似的查询 类。