连接到 firebase 数据库

问题描述 投票:0回答:1

我试图在 React 中开发一个简单的网站来了解一个月内推出的游戏,为此我想将该数据存储在 firebase 数据库(手工制作)上并读取它。

但在第一次尝试中,我无法连接。

我有这个要尝试 Firebase 数据 但我得到: 错误控制台

首先我尝试通过一个重击,但我不知道如何使其工作,现在我直接尝试通过组件“Game.jsx”。我有点迷失,搜索并没有提供很多信息

这就是项目,https://github.com/saulOMgit/CalendarioVideojuegos,有什么线索吗?

reactjs firebase
1个回答
0
投票

首先前往您的 Firestore 并更改规则

enter image description here

service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read, write;
    }
  }
}

© www.soinside.com 2019 - 2024. All rights reserved.