我正在尝试将Firebase services
用于我现有的emberjs-1.6
应用程序。为此,是否存在任何库或是否存在使用javascript库进行此集成的替代方法?
我尝试使用javascript库执行此操作 (https://www.gstatic.com/firebasejs/5.9.4/firebase.js)
var config = {
apiKey: "---",
authDomain: "---",
databaseURL: "---",
projectId: "---",
storageBucket: "---",
messagingSenderId: "---"
};
firebase.initializeApp(config);
db=firebase.firestore();
db.settings({timestampsInSnapshots:true});
db.collection('cafes').get().then((snapshot)=>{
snapshot.docs.forEach(doc => {
console.log(doc);
});;
})
我希望在网络浏览器控制台上的Firestore
中显示数据。但会产生以下错误消息
Uncaught FirebaseError: Invalid collection reference. Collection references must have an odd number of segments, but has 0