gpt4 book ai didi

firebase - 删除云 Firestore 文档中的特定字段时出错

转载 作者:行者123 更新时间:2023-12-05 06:19:43 27 4
gpt4 key购买 nike

我正在使用来自 here 的代码

Firestore.instance.collection('path').document('name').updateData({'Desc': FieldValue.delete()}).whenComplete((){
print('Field Deleted');
});

我在用

 cloud_firestore: 0.13.2+1

但是,这会引发错误

[ERROR:flutter/lib/ui/ui_dart_state.cc(157)] Unhandled Exception: type 'MethodChannelFieldValue' is not a subtype of type 'FieldValuePlatform'

谁能告诉我如何正确删除字段

最佳答案

使用 cloud_firestore: ^2.2.0 这似乎有效:

FirebaseFirestore.instance 
.collection('path')
.doc('name')
.update({'desc': FieldValue.delete()});

关于firebase - 删除云 Firestore 文档中的特定字段时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60759410/

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