不使用 golang 的带有部分属性的 mgo 查找文档

Not finding documents using golang's mgo with partial attributes

我正在尝试删除一堆具有共同属性的文档。这是文档的样子:

{
    _id : {
        attr1 : 'foo',
        attr2 : 'bar'
    },
    attr3 : 'baz',
}

多个文档将在 attr1 条目中具有相同的 'foo' 值。我正在尝试删除所有这些。为此,我有类似的东西:

type DocId struct {
    Attr1 string `bson:"attr1,omitempty"`
    Attr2 string `bson:"attr2,omitempty"`
}

type Doc struct {
    Id DocId `bson:"_id,omitempty"`
    Attr3 string `bson:"attr3,omitempty"`
}


doc := Doc{
    Id : DocId{ Attr1 : 'foo' },
}

collection := session.DB("db").C("collection")
collection.Remove(doc)

这里的问题是我在删除调用中遇到 Not found 错误。 你能看出代码中有什么奇怪的地方吗?

非常感谢!

这只是 MongoDB 处理完全匹配和部分匹配的方式的结果。可以使用 mongo shell:

快速演示
# Here are my documents
> db.docs.find()
{ "_id" : { "attr1" : "one", "attr2" : "two" }, "attr3" : "three" }
{ "_id" : { "attr1" : "four", "attr2" : "five" }, "attr3" : "six" }
{ "_id" : { "attr1" : "seven", "attr2" : "eight" }, "attr3" : "nine" }

# Test an exact match: it works fine
> db.docs.find({_id:{attr1:"one",attr2:"two"}})
{ "_id" : { "attr1" : "one", "attr2" : "two" }, "attr3" : "three" }

# Now let's remove attr2 from the query: nothing matches anymore,
# because MongoDB still thinks the query requires an exact match
> db.docs.find({_id:{attr1:"one"}})
... nothing returns ...

# And this is the proper way to query with a partial match: it now works fine.
> db.docs.find({"_id.attr1":"one"})
{ "_id" : { "attr1" : "one", "attr2" : "two" }, "attr3" : "three" }

您将在 documentation 中找到有关此主题的更多信息。

在您的 Go 程序中,我建议使用以下行:

err = collection.Remove(bson.M{"_id.attr1": "foo"})

不要忘记在每次往返 MongoDB 后测试错误。