使用Firebase的权限错误

时间:2018-08-23 13:20:46

标签: reactjs firebase firebase-realtime-database firebase-security-rules

enter image description here

上面是我尝试将数据插入Firebase数据库时遇到的错误的快照。

constructor(props) {
   super(props);
   this.app = firebase.initializeApp(DB_CONFIG);
   this.database = this.app.database().ref().child('notes');
   this.state = {
     notes : [],
   }
}

componentWillMount() {
   const prevNotes = this.state.notes;

   this.database.on('child_added', snap => {
      prevNotes.push({
        id: snap.key,
        data: snap.val().data,
      })

   this.setState({ notes: prevNotes });
   })
}

addNote(e) {
  if(e.which === 13) {
    this.database.push().set({ data: e.target.value });
  }
}

上面是我用来在数据库中添加注释的反应代码,我正在创建待办事项列表,addNote()将在按键ENTER上添加新注释。

请帮助我,我是第一次使用Firebase,是否有可能导致此问题的代理问题?

1 个答案:

答案 0 :(得分:1)

问题已解决,我只是为了将数据库中的读取/写入规则设置为true,firebase实际上具有两种类型的数据库Cloud Firestore和实时数据库。实时数据库是正确的。