我正在和MGO合作(因为我没有找到更好的东西)。 我玩过它并得到了一些结果,但我不明白如何获得收到的文件的_id(内部Mongo ObjectId)?
例如:
type FunnyNumber struct {
Value int
_id string
}
session, err := mgo.Dial("127.0.0.1:27017")
if err != nil {
panic(err)
}
defer session.Close()
// Optional. Switch the session to a monotonic behavior.
session.SetMode(mgo.Monotonic, true)
c := session.DB("m101").C("funnynumbers")
funnynumber := FunnyNumber{}
err = c.Find(bson.M{}).One(&funnynumber)
if err != nil {
log.Fatal(err)
}
fmt.Println("Id one:", funnynumber._id) // Nothing here? WHy? How to get it.
fmt.Println("Value one:", funnynumber.Value) // 62. It's OK!
有人可以帮帮我吗?我可以在哪里阅读有关它的一些信息?我没有在MGO doc中找到任何内容
我的文件的架构是:
{ "_id" : ObjectId("50778ce69331a280cf4bcf90"), "value" : 62 }
谢谢!
答案 0 :(得分:3)
_id
变量更改为大写(ID)以使其可导出。bson.ObjectID
作为其类型。FunnyNumber
Id变量添加标记。
字段应该做三件事以获得对象Id值。
import "labix.org/v2/mgo/bson"
type FunnyNumber struct {
Value int `json:"value"`
Id bson.ObjectId `bson:"_id,omitempty"`` // only uppercase variables can be exported
}
查看包BSON以了解有关在使用mongodb时使用bson标记的更多信息