我一定错过了一些明显的东西? 如何设置firebase安全规则:
我无法在文档中看到对同一目录有多个".write"
规则的能力......
{
"rules": {
".read": true,
// this only occurs if "auth === null" otherwise should be full access.
".write": "!data.exists() && newData.exists()"
}
}