我卡住了,如何删除mongodb中的嵌入文件。我正在使用spring数据mongodb标准,我这样做如下:
// database
"_id" : ObjectId("55683d51e4b0b6050c5b0db7"),
"_class" : "com.samepinch.domain.metadata.Metadata",
"preferenceType" : "SHOPPING",
"subtypes" : [
{
"_id" : ObjectId("55683d51e4b0b6050c5b0db6"),
"leftValue" : "VEG",
"rightValue" : "NON_VEG",
"preferencePoint" : 0
}
],
"createdDate" : ISODate("2015-05-29T10:20:01.610Z"),
"updatedDate" : ISODate("2015-05-29T10:20:01.610Z")
// query
mongoTemplate.updateMulti(new Query(),
new Update().pull("subtypes", Query.query(Criteria.where("subtypes._id").is(new objectId("55683d51e4b0b6050c5b0db6"))),Metadata.class);
我做错了什么? 提前谢谢!
答案 0 :(得分:1)
subtypes
位于嵌套对象中,因此您应首先在$elemMatch中传递此匹配的第一个匹配的给定条件的数组元素。将查询更新为:
db.updateMulti.update({"subtypes":{"$elemMatch":{"_id":ObjectId("55683d51e4b0b6050c5b0db6")}}},
{"$pull":{"subtypes":{"_id":ObjectId("55683d51e4b0b6050c5b0db6")}}})
此查询从subtypes
数组中提取精确匹配的数组元素。
在spring elemMatch的帮助下(没有那么多专业知识在spring mongo 中)我将这个查询转换为弹簧格式,如下所示:
mongoTemplate.updateMulti(new Query(
where("subtypes").elemMatch(where("_id").is(ew objectId("55683d51e4b0b6050c5b0db6"))).pull(
pull("subtypes", Query.query(Criteria.where("_id").is(new objectId("55683d51e4b0b6050c5b0db6"))),Metadata.class
));
以上春季查询未经测试我希望您将以spring mongo查询格式转换mongo更新查询。