gpt4 book ai didi

ios - 提供的存储桶 : version00-d20e4. appspot.com 与当前实例的存储桶不匹配错误

转载 作者:行者123 更新时间:2023-11-30 11:33:31 25 4
gpt4 key购买 nike

我有包含图像的表格 View ,我通过 URL 从存储中检索图像,并将其存储在数据库中,但偶尔会收到此错误:

'NSInvalidArgumentException',原因:'提供的存储桶:version00-d20e4.appspot.com 与当前实例的存储桶:myprojectname-d2551.appspot.com 不匹配'

(我使用collectionview在另一个 View 中获得了这张图片,所以我确信我使用了正确的GoogleService-Info.plist)上次我收到此错误时,我删除了所有相关节点表单数据库和所有存储,然后再次添加它,然后它的工作。发生什么事了?我的代码要重新

    if let ProductImageURL = product.ProductImageURL{
let imageStorageRef = Storage.storage().reference(forURL:ProductImageURL)
imageStorageRef.getData(maxSize: 2*1024*1024, completion:{ [weak self](data,error)in
if error != nil {
print(error)
}else{
DispatchQueue.main.async {
cell.ProductImage?.image = UIImage(data:data!)
}
}
})//.resume()
}

最佳答案

NSInvalidArgumentException当您向方法传递无效参数时,会引发异常。

您传递给变量“ProductImageURL”的值是“myprojectname-d2551.appspot.com”。但是,预计会是“version00-d20e4.appspot.com”。确保您在“ProductImageURL”中使用正确的路径。

您可以尝试对“ProductImageURL”的值进行硬编码并查看结果。

关于ios - 提供的存储桶 : version00-d20e4. appspot.com 与当前实例的存储桶不匹配错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49990686/

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