私は自分のプロジェクトにfirestoreを実装しようとしています。 私が今やっているのは、それを実装してデータを読み込むだけですが、タイトルに誤りがあります:XMLHttpRequestはアクセス制御チェックのためにhttps://firestore.googleapis .....をロードできません
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を()...)
これは、なぜ、あなたのアイデアを持っていますかエラーは起こっていますか?あなたはFirestoreセキュリティルールを更新する必要があるように、事前に
おかげで、
これで運がいいですか?私は同じ問題にぶつかっている... – Onaracs