gpt4 book ai didi

ios - 对象 ************/******.jpg 不存在,Firebase 存储

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:54:10 24 4
gpt4 key购买 nike

我的问题是当我运行应用程序时,这个错误出现在控制台中

可选(“用户配置文件/Kk1kKMF89BH778vgd788ju7.jpg 不存在。”)

但该文件存在于我的 Firebase 存储中。我尝试将图像下载到名为 phSelfie 的 UIImage。

这是我的代码:

import UIKit
import Firebase

class SeeSelfieViewController: UIViewController {

var storage = FIRStorage.storage()

@IBOutlet var phSelfie: UIImageView!

override func viewDidLoad() {
super.viewDidLoad()

let gsRef = storage.reference(forURL: "gs://******-****.appspot.com/profileUsers/")

let user = FIRAuth.auth()!.currentUser!

let imageRef = gsRef.child("\(user.uid).jpg")

imageRef.data(withMaxSize: 1 * 1024 * 1024) { (data, error) in

if error != nil {

print("\(error?.localizedDescription)") <------ This run the error!!

} else {

let imageSelfie = UIImage(data: data!)

self.phSelfie.image = imageSelfie

print("Succes")

}

}
}


override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

}

最佳答案

我看到了一些问题:

  • storage.reference(forURL: "gs://******-****.appspot.com/profileUsers/") 应该是一个 HTTP URL,或者你应该只需使用 storage.reference().child("profileUsers")
  • Users Profile/Kk1kKMF89BH778vgd788ju7.jpg 对象中似乎有空格,这将在实际对象名称中转义百分比 %20
  • Users Profile 似乎与 profileUsers 不匹配,这就是上面的对象名称所说的...

关于ios - 对象 ************/******.jpg 不存在,Firebase 存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41786443/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com