我在firebase中的用户个人资料$profileId
包含字段
email
name
ratings
type
uid
我希望所有公共用户都可以访问除email
之外的个人资料数据。我试过这个
"$profileId": {
".indexOn": ".value",
".read": true,
"email": {
".read": "auth.uid == $profileId"
}
}
但在这种情况下,所有字段都是公开的。如何在不更改数据库结构的情况下隐藏email
字段?
由于