Firebase托管图像URL最佳做法

问题描述 投票:0回答:1

我刚刚将一些图像上传到Firebase存储。我有一个React App,正在使用Google Firestore来获取数据(快照)。我在Firestore中有一个字段imageURL,它是一个字符串,想从存储中粘贴此图像URL。我是否使用附图中所示的链接?它具有网址https://firebasestorage.googleapis.com/v0/b/.....还是以gs://domain.com...开头的其他链接不可见?

enter image description here

firebase firebase-storage
1个回答
0
投票

您应该将图像的路径存储在存储桶(而不是URL)中,然后使用Firebase SDK for Cloud Storage并使用getDownloadUrl()以编程方式在您的应用程序as shown in the documentation中获取URL。

© www.soinside.com 2019 - 2024. All rights reserved.