标签: android google-cloud-firestore
在Firestore中,我有一个集合,文档和一个名为带索引的项的字段数组。我不想删除字段数组/地图中的所有项目。例如,我要删除索引0,而不是2。我的代码在这里。
我也尝试过.delete(),但是没有运气。
mFirebaseInventoryCollection.document(mUserIdentification).update("Items", FieldValue.arrayRemove());
我希望索引0消失在Firestore字段中。