firestore.collection("Something").where("User2", "==", "")
.get()
.then(function(querySnapshot) {
querySnapshot.forEach(function(doc) {
const docRef = firestore.collection("Something").doc(doc.id);
docRef.update({
User2: messageseqno,
})
})
.catch(error => {
console.log(error);
const docRef = firestore.collection("Something").doc();
var nullvalue = "";
docRef.update({
User1: messageseqno,
User2: nullvalue,
})
});
})
Мне нужно, чтобы это выполнялось как операторы if-else. учитывая, что если, что я могу сделать, чтобы получить еще.
Приведенный выше код показывает мне ошибку
"Невозможно прочитать свойство 'catch' из undefined"