如何从数组中删除文档?

How can I remove a document from an array?

我插入了一个具有这种结构的文档

{ 
  "_id" : ObjectId("5708bf40a86e6f5bd1f45354"),
  "companyId" : ObjectId("5708bed6a86e6f5bd1f4534f"),
  "descriptions" : [ 
       { "id" : ObjectId("5708bf40a86e6f5bd1f45351"), "description" : "test" },
       { "id" : ObjectId("5708bf40a86e6f5bd1f45352"), "description" : "test1" },
       { "id" : ObjectId("5708bf40a86e6f5bd1f45353"), "description" : "test2" } 
   ]
}

现在我试图通过删除符合某些条件的对象来修改数组 - 在这种情况下,我需要删除具有特定 id.

的对象

这是我目前所做的,没有任何成功

public void deleteCustomField(final String descriptionId, final ObjectId companyId){
    MongoCollection<Document> collection = setCollection(CUSTOM_FIELDS_COLLECTION);

    collection.updateOne(and(eq("companyId", companyId), eq("descriptions.id", new ObjectId(descriptionId))), new Document("$unset", new Document("descriptions.description", "")));
}

这是setCollection方法

private MongoCollection<Document> setCollection(final String collectionName){
    return db.getCollection(collectionName); 
}

updateOne 什么都不做。我知道我的查询看起来很奇怪,但我不明白发生了什么以及如何从数组中删除文档。我也试过 $pull 但我一点运气都没有。

我知道我在这里遗漏了一些非常基本的小东西,但作为一个 MongoDB 初学者,我无法发现它。

可以推一下吗?

您可以尝试更换 new Document("$unset", new Document("descriptions.description", "")) 经过 new Document("$pull", new Document("descriptions.id", new ObjectId(descriptionId)))。 请参阅 pull operator.

的文档