我有一些招聘人员给出的任务,在这里我需要使用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
答案 0 :(得分:0)
在规则(firebase)中将读写权限设置为true。