getDownloadURL 的 Firebase 存储句柄错误
Posted
技术标签:
【中文标题】getDownloadURL 的 Firebase 存储句柄错误【英文标题】:Firebase Storage handle error for getDownloadURL 【发布时间】:2021-12-20 03:09:02 【问题描述】:我在从 Firebase 存储中记录错误消息和代码时遇到了一些小问题。
这是我的代码:
fileRef
.getDownloadURL()
.then((url) =>
// some code
)
.catch((error) =>
console.log(error)
)
进入开发者控制台我得到这个:
FirebaseError: Firebase Storage: Object 'bucketname/filename' does not exist. (storage/object-not-found)
"error":
"code": 404,
"message": "Not Found."
console.log(error.code) 不起作用(
我怎样才能只得到error.code和error.message?
谢谢
【问题讨论】:
不起作用是什么意思?它是未定义的还是什么?另外,您使用的是哪个 Firebase 版本? 不知何故现在它工作了,以前是不确定的 【参考方案1】:事实上,error.code
将返回此documentation page 中列出的错误代码之一。
因此,您应该按照example in the documentation 中的说明进行操作(查看“Web 版本 8”选项卡):
fileRef
.getDownloadURL()
.then((url) =>
// some code
)
.catch((error) =>
// A full list of error codes is available at
// https://firebase.google.com/docs/storage/web/handle-errors
switch (error.code)
case 'storage/object-not-found':
// File doesn't exist
break;
case 'storage/unauthorized':
// User doesn't have permission to access the object
break;
case 'storage/canceled':
// User canceled the upload
break;
// ...
case 'storage/unknown':
// Unknown error occurred, inspect the server response
break;
);
【讨论】:
以上是关于getDownloadURL 的 Firebase 存储句柄错误的主要内容,如果未能解决你的问题,请参考以下文章
getDownloadURL 的 Firebase 存储句柄错误
为啥使用异步函数“getDownloadURL”来获取 Firebase 存储中的文件 URL
使用 getDownloadURL() 从 firebase 存储加载图像不起作用
如何从 Firebase 存储 getDownloadURL 获取 URL