{
"rules": {
"Users": {
"$user_id": {
// Grants write access to the owner of this user account
// whose uid must exactly match the key ($user_id)
".write": "$user_id === auth.uid"
}
}
"$businessName": {
".write": "root.child('Users').child(auth.uid).child($businessName).child('Permission s').val() === 'MODERATOR'"
}
}
}
这给了我一个错误:
保存规则时出错 - 第10行:预期','或'}'。
错误说我因某种原因错过了一个括号。我错过了逗号吗?
答案 0 :(得分:1)
正如@Frank van Puffelen所说我在“$ businessName”之前错过了一个逗号。