错误:/ categories中的Permission_denied:客户端没有访问所需数据的权限

时间:2019-05-09 17:25:39

标签: reactjs firebase firebase-realtime-database

我有一些招聘人员给出的任务,在这里我需要使用react redux和firebase构建一个电子商务网站。

前端部分已完成,但无法从Firebase获取数据。 这是我的“规则”标签的内容,该如何修改。

this.props.firebase.categories().on('value', snapshot => {
        // Not coming here.
            console.log(snapshot, snapshot.val)
        }, (error) => {
        // Error shows here
            console.log(error);
        });


// Content of Rules tab
service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read, write: if true;
    }
  }
}

按照本教程进行: https://www.robinwieruch.de/complete-firebase-authentication-react-tutorial/#react-application-setup

1 个答案:

答案 0 :(得分:0)

在规则(firebase)中将读写权限设置为true。