如何使用 Firebase Web 将图像从链接保存到 Firebase 存储?
Posted
技术标签:
【中文标题】如何使用 Firebase Web 将图像从链接保存到 Firebase 存储?【英文标题】:How to save an image from a link to Firebase storage with firebase web? 【发布时间】:2017-02-22 20:31:55 【问题描述】:在我的 ios 应用中,我想显示一个网络摄像头的图像:https://www.alpenblickzeneggen.ch/fileadmin/user_upload/webcamBild.jpg。
但是对于 iOS 10 和 AppTransportSecurity 以及所有这些问题,我认为最好不要这样做:
从 Firebase 网页版链接获取图片 将该图片保存到 Firebase 存储中 从 Firebase 存储下载我的 iOS 应用中的图像但是,我该怎么做呢?有可能吗?
【问题讨论】:
【参考方案1】:只要网站使用相当现代的密码,ATS 就不会成为问题...
如果您已经将图像存储在其他位置,只需使用 SDWebImage 之类的东西下载并显示您的图像:
@import SDWebImage
imageView.sd_setImage(with: URL(string: "https://www.alpenblickzeneggen.ch/fileadmin/user_upload/webcamBild.jpg"), placeholderImage: UIImage(named: "placeholder.png"))
如果图像发生变化,并且您需要一个地方来存储该数据,那么 Firebase 存储是一个不错的选择。
【讨论】:
以上是关于如何使用 Firebase Web 将图像从链接保存到 Firebase 存储?的主要内容,如果未能解决你的问题,请参考以下文章
将图像链接从 Firebase 存储存储到 Firebase 数据库时出错
如何在 Flutter Web 中显示 Firebase 存储图像。我有图片网址。显示 URL 而不是图像。但另一侧图像链接已完美完成
如何让用户从 web 应用程序上的 firebase 存储下载图像?