gpt4 book ai didi

android - 或者运算符(operator) '||' 在 firebase 规则中不起作用

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

我正在尝试更改我的 firebase 实时数据库规则,以便我可以从经过身份验证和未经身份验证的用户访问它,我将它们更改为

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

但是 or 运算符 || 不起作用。我该怎么办?

谢谢!

最佳答案

试试这个

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

关于android - 或者运算符(operator) '||' 在 firebase 规则中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41327145/

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