Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我会喜欢以下内容: 1. 有这方面的 API 吗? 2. 如果我的应用添加了图片,如果这个 firebase 类似于 dropbox(或更好),我可以从虚拟文件夹中读取以在网络上显示图片吗?
Firebase 没有同步文件系统的内置方法。不过,您可能会使用 Firebase REST API 或 Node.js 客户端将图像推送到 Firebase。
一旦您的数据在 Firebase 中,就很容易使用 javascript 库将其拉入网页。我建议将图像存储为 base64 编码的字符串,并在图像上设置 dataURL 以显示它。