我正在尝试测试文档是否存在标题uid。我已确认该文档存在于用户集合中的Firestore中,但doc.exists始终返回false。请注意,我的文档uid仅包含集合(无字段)。
firebase.auth().onAuthStateChanged((user) => {
if (user) {
// User is signed in.
var uid = user.uid
db.collection("users").doc(uid)
.get()
.then((doc) => {
console.log(doc)
if (doc.exists) {
console.log('returning user')
} else {
console.log('new user')
}
}).catch(function(error) {
console.log("Error getting document:", error);
});
} else {
// User is signed out.
// ...
}
答案 0 :(得分:1)
这是因为当您在文档中创建了集合时,您从未创建过文档本身。您可以判断文档是否存在,因为如果它们不存在,它们将在Firestore中显示为斜体。