我的firebase数据库规则如下:
{
"rules": {
"users": {
"$uid": {
".read": "auth != null || root.child('users').child(auth.uid).child('role').val() == 'teacher'",
".write": "auth != null || root.child('users').child(auth.uid).child('role').val() == 'teacher'"
}
}
}
}
我的目标如下:
答案 0 :(得分:5)
这似乎是您正在寻找的:
{
"rules": {
"users": {
".read": "root.child('users').child(auth.uid).child('role').val() == 'teacher'",
".write": "root.child('users').child(auth.uid).child('role').val() == 'teacher'",
"$uid": {
".read": "auth.uid == $uid",
".write": "auth.uid == $uid"
}
}
}
}
有了这个:
users
节点答案 1 :(得分:0)
删除$uid
:
{
"rules": {
"users": {
".read": "auth != null || root.child('users').child(auth.uid).child('role').val() == 'teacher'",
".write": "auth != null || root.child('users').child(auth.uid).child('role').val() == 'teacher'"
}
}
}