我正在试用 Firebase 的新 Firestore。当我从https://firebase.google.com/docs/firestore/manage-data/add-data?authuser=0运行代码示例时,出现错误。
// Add a new document with a generated id.
db.collection("cities").add({
name: "Tokyo",
country: "Japan"
})
.then(function(docRef) {
console.log("Document written with ID: ", docRef.id);
})
.catch(function(error) {
console.error("Error adding document: ", error);
});
异常捕获:(FirebaseError):函数CollectionReference.add()要求其第一个参数是对象类型,但它是:自定义对象对象
编辑:对不起,我没有提到我正在使用 GWT 和 JSNI,没有 gwt 也可以正常工作