是否可以将简单数据(例如 string/int/double)存储到 Firebase 存储中?

Is it possible to store simple data (such as string/int/double) into Firebase storage?

我有一个名为 CardModel 的 class,它就像一个容器,存储 cardName(字符串)、标题(字符串)、gps 坐标(双精度)和其他一些东西。我希望能够将 cardModel object 存储到 Firebase 中。但似乎 Firebase 存储只处理 Files/URI/ 以及与照片或视频有关的任何事情。我必须使用 Firebase 实时数据库来存储我自定义的 objects 吗?并且 Firebase 数据库可以是唯一存储简单数据类型(例如字符串、双精度和整数)的数据库吗?

希望大家帮帮忙。

干杯~

Firebase 实时数据库是存储这些数据的完美工具。为了帮助您了解差异,我提供了一份涵盖每种产品功能的便捷指南。

存储数据的最佳位置取决于要存储的数据类型和使用数据的方式。

Firebase documentation 对每个产品都这样说:

  • The Firebase Realtime Database stores JSON application data, like game state or chat messages, and synchronizes changes instantly across all connected devices.

  • Firebase Remote Config stores developer-specified key-value pairs to change the behavior and appearance of your app without requiring users to download an update.

  • Firebase Hosting hosts the HTML, CSS, and JavaScript for your website as well as other developer-provided assets like graphics, fonts, and icons.

  • Firebase Storage stores files such as images, videos, and audio as well as other user-generated content.