Firebase流行规则不使用更新的firebase

发布于 2025-01-23 12:55:11 字数 361 浏览 0 评论 0原文

我正在尝试使用

{“规则”:{“ Read”:true,“ .write”:true}}

每次我放入时,我获取

“不匹配的输入'{'期望{'function','import','service','rules_version'}“

我当前的规则是

rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read, write: if true;
    }
  }
}

I'm trying to use the most popular/common firebase rule of

{ "rules": { ".read": true, ".write": true } }

Every time I put it in, I get the error of

"mismatched input '{' expecting {'function', 'import', 'service', 'rules_version'}"

My current rule is

rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read, write: if true;
    }
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静赏你的温柔 2025-01-30 12:55:12

您要输入的是实时数据库的安全规则,但是您正在尝试将其输入Cloud Firestore,这是另一个数据库。虽然两个数据库都是火箱的一部分,但它们是完全分开的,并且一个数据库的安全规则不适用于另一个。

要解决错误,您将必须设置云firestore的规则,如所示”这里在这里

What you're trying to enter are security rules for the Realtime Database, but you're trying to enter them for Cloud Firestore, which is another database. While both databases are part of Firebase, they're completely separate, and the security rules for one don't apply to the other.

To fix the error, you will have to set the rules for Cloud Firestore, as shown here and here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文