gpt4 book ai didi

angular - 如何删除 Firestore 文档中的字段?

转载 作者:太空狗 更新时间:2023-10-29 17:11:48 28 4
gpt4 key购买 nike

如何删除 Cloud Firestore 中的文档字段? ...我正在使用下面的代码,但我不能。

this.db.doc(`ProfileUser/${userId}/followersCount/FollowersCount`).update({ 
[currentUserId]: firebase.firestore.FieldValue.delete()})

这是否可能,如果可能,如何实现?

最佳答案

您可以尝试如下所示:

// 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()
});

关于angular - 如何删除 Firestore 文档中的字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46984308/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com