我在Firebase中设置安全规则时遇到问题。我有这个结构:
"notes": {
"1": {
"userId": "user_1",
"text": "note text"
},
"2": {
"userId": "user_1",
"text": "another note"
},
"3": {
"userId": "user_2",
"text": "some note text"
},
"4": {
"userId": "user_3",
"text": "something"
}
}
我想通过安全规则中的auth.uid变量为登录用户检索所有注释。 当具有uid user_1的用户登录时,请致电
ref.on("notes", function...)
我希望他只能得到他的笔记。 如何为它设定规则?