gpt4 book ai didi

reactjs - Firebase 存储规则 - 意外 'userId'

转载 作者:行者123 更新时间:2023-12-03 13:35:58 24 4
gpt4 key购买 nike

我正在尝试在 firebase 中设置一条规则进行存储,只有经过身份验证的用户才能写入名为 avatar 的头像图像

这是firebase docs示例:

// Grants a user access to a node matching their user ID
service firebase.storage {
match /b/{bucket}/o {
// Files look like: "user/<UID>/path/to/file.txt"
match /user/{userId}/{allPaths=**} {
allow read, write: if request.auth.uid == userId;
}
}
}

这些是我在 storage.rules 文件中定义的规则:

service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}

match /images/{allPaths=**} {
allow write: if request.resource.size < 5 * 1024 * 1024
&& request.resource.contentType.matches("image/.*")
&& request.resource.contentType == resource.contentType
}

match /images/user-{userId}/avatar.* {
allow read;
allow write: if request.auth.uid == userId;
}
}
}

当我部署时抛出的错误是

[E] 13:25 - Unexpected 'userId'

我在文档中找不到任何其他内容告诉我如何定义此 userId。文档指定了它,我做错了什么?

最佳答案

就像两位评论者所说的那样,语法不允许使用 - 的“文件夹”

所以你必须选择像

这样的结构
/images/user/{userId}

制定规则如下:

match /images/user/{userId}/avatar.* {
allow read;
allow write: if request.auth.uid == userId;
}

关于reactjs - Firebase 存储规则 - 意外 'userId',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48429316/

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