如何从阵列中删除文档?

时间:2016-04-09 09:00:22

标签: java arrays mongodb unset

我已插入具有此结构的文档

{ 
  "_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初学者,我无法发现它。

你能帮我推吗?

1 个答案:

答案 0 :(得分:1)

您可以尝试替换 new Document("$unset", new Document("descriptions.description", "")) 通过 new Document("$pull", new Document("descriptions.id", new ObjectId(descriptionId)))。 请参阅pull operator的文档。