Solución:
Puede probar como se muestra a continuación:
// get the reference to the doc
let docRef=this.db.doc(`ProfileUser/${userId}/followersCount/FollowersCount`);
// remove the {currentUserId} field from the document
let removeCurrentUserId = docRef.update({
[currentUserId]: firebase.firestore.FieldValue.delete()
});
Esto funcionó para mí. (también funcionó para eliminar el campo con valor nulo)
document.ref.update({
FieldToDelete: admin.firestore.FieldValue.delete()
})
Por alguna razón, la respuesta seleccionada (
firebase.firestore.FieldValue.delete()
) no funcionó para mí. pero esto hizo:
Simplemente establezca ese campo en null
¡y será eliminado!
// get the reference to the doc
let docRef=this.db.doc(`ProfileUser/${userId}/followersCount/FollowersCount`);
// remove the {currentUserId} field from the document
let removeCurrentUserId = docRef.update({
[currentUserId]: null
});
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)