我正在尝试在我的项目中实现firestore。 我现在正在做的只是实现它并读取一些数据,但我在标题中得到错误:
由于访问控制检查,XMLHttpRequest无法加载https://firestore.googleapis.com/google.firestore。
我使用以下内容:
// Initialize Firebase
var config = {
apiKey: "xxx",
authDomain: "xxx",
databaseURL: "xxx",
projectId: "xxx",
storageBucket: "xxx",
messagingSenderId: "xxx"
};
firebase.initializeApp(config);
// Initialize Cloud Firestore through Firebase
var db = firebase.firestore();
var docRef = db.collection("users");
docRef.get().then(function(querySnapshot) {
querySnapshot.forEach(function(doc) {
//alert(doc.data().born);
});
})
.catch(function(error) {
console.log("Error getting documents: ", error);
});
我尝试检索数据的部分导致错误(docRef.get()...)
你知道为什么会发生这个错误吗?
提前致谢,
答案 0 :(得分:2)
对于其他有相同问题的人,已经报告了该问题,并且解决方案仍在进行中:https://github.com/firebase/firebase-js-sdk/issues/3708
编辑: 即使上面链接中的线程未解析,也已关闭。对于我来说,问题仍然存在。
答案 1 :(得分:1)
听起来您需要更新Firestore安全规则。您可以通过Firebase控制台网站中“数据库”页面的“规则”标签执行此操作。
关于Firestore规则的文档位于:https://firebase.google.com/docs/firestore/security/get-started
您可以使用此规则集让任何人都可以访问它。我会使用这些规则来确保您能够解决问题。之后,我会调整您的规则,使其符合您的应用数据所需的安全性(或敏感度)。
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if true;
}
}
}
答案 2 :(得分:0)