code for uploading data in firestore
控制台:“使用ID编写的文档:未定义”
try {
console.log
const docRef = addDoc(collection(db, "users"), {
name: "Alan",
//middle: "Mathison",
//last: "Turing",
//born: 1912
});
console.log('yyyyy');
console.log("Document written with ID: ", docRef.id);
} catch (e) {
console.error("Error adding document: ", e);
}
尝试在Firebase Firestore中添加数据,
3条答案
按热度按时间gv8xihay1#
addDoc
是异步操作。您需要使用await
关键字来暂停代码的执行,直到添加文档为止。否则docRef
将不代表您的文档。bqf10yzr2#
试试那个
kpbwa7wx3#
这个应该可以。您可以删除过多的
console.logs