gpt4 book ai didi

android - 允许除一个 child 以外的所有 child 读写

转载 作者:行者123 更新时间:2023-11-29 15:01:14 26 4
gpt4 key购买 nike

我正在为我的项目使用 firebase

现在我想自定义我的规则

默认规则是:

{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}

允许授权用户读取和写入所有数据

现在我想允许授权用户读取和写入所有数据

我也想添加这个

{
"rules": {
"visits": {
"$visit_id": {
"mister_id": {
".write": "data.val() == ''"
}
}
}
}

}

现在如何添加这两条规则

最佳答案

我想你需要这样的东西:

{
"rules": {
".read": "auth != null",
".write": "auth != null",
"visits": {
"$visit_id": {
"mister_id": {
".validate": "(data.val() == null) || (data.isString() && (data.val().length == 0))"
}
}
}
}
}

您可以使用 Firebase Datase Rules documentation 找到您需要的所有内容.

关于android - 允许除一个 child 以外的所有 child 读写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45245731/

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