本文介绍了Golang mgo寻找的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试在MongoDB中找到我的用户,但是当我运行此代码时:
I try to find my user in MongoDB but when I run this code :
type Person struct {
Id bson.ObjectId `bson:"_id,omitempty"`//`json:"id" bson:"_id,omitempty"`
username string `json:"username" bson:"username"`
score string `json:"score" bson:"score"`
level string `json:"level" bson:"level"`
}
result := Person{}
var id = "5b8a45912ed6f24d945bee38"
err = c.Find(bson.M{"_id":bson.ObjectIdHex(id)}).Select(bson.M{"username": 1, "score":1, "level": 1}).One(&result)
fmt.Println(result)
只是告诉我:
{ObjectIdHex( 5b8a45912ed6f24d945bee38)}}
不要返回其他值!
非常感谢您抽出宝贵的时间!
Thank you so much for your time!
推荐答案
只需在结构名称的开头使用大写字母!
而且您也不需要
Just you should use the capital letter in first of struct names!And also you don't need
Select(bson.M{"username": 1, "score":1, "level": 1})
您可以编写:
err = c.FindId(bson.ObjectIdHex(id)).One(&result)
祝你好运:))
这篇关于Golang mgo寻找的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!