我正在嘗試Firebase的新Firestore。當我從https://firebase.google.com/docs/firestore/manage-data/add-data?authuser=0運行代碼示例時,出現錯誤。Firestore Web代碼示例提供了無效的參數類型
// 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
從快速掃描您的代碼看起來是正確的,這讓我想知道是否從樣本複製了一些不可打印的字符。你可以嘗試輸入你傳入的JSON對象,看看是否有所作爲? –
我再次輸入,沒有區別 –
嗯....在這種情況下,我不知道。希望別人有更好的主意。 –