登录
首页 >  Golang >  Go问答

在 Golang 中使用 mgo 包无法获取 mongodb 中对象的 "_id" 字段

来源:SegmentFault

时间:2023-01-17 12:26:39 347浏览 收藏

本篇文章向大家介绍《在 Golang 中使用 mgo 包无法获取 mongodb 中对象的 "_id" 字段》,主要包括mongodb,具有一定的参考价值,需要的朋友可以参考一下。

问题内容

这是我的结构体:

type Article struct {
    Id      bson.ObjectId `json:"id"        bson:"_id"`
    Title   string        `json:"title"`
    Author  string        `json:"author"`
    Date    string        `json:"date"`
    Tags    string        `json:"tags"`
    Content string        `json:"content"`
    Status  string        `json:"status"`
}

这是我获取 mongodb 中数据的函数:

func AllArticles() []Article {
    articles := []Article{}
    err := c_articles.Find(bson.M{}).All(&articles)
    if err != nil {
        panic(err)
    }
    fmt.Println(articles)
    return articles
}

这是打印结果:

[{ObjectIdHex("") Hello1 DYZ 2013-11-10 abc This is another content. published} {ObjectIdHex("") Hello2 DYZ 2013-11-14 abc This is the content. published} {ObjectIdHex("") Hello3 DYZ 2013-11-15 abc This is the content haven't been published. draft}]

可以看到,对应

_id
的值是
ObjectIdHex("")
,但是在数据库中的数据是这样的:

{ "_id" : ObjectId("5281b83afbb7f35cb62d0834"), "title" : "Hello1", "author" : "DYZ", "date" : "2013-11-10", "tags" : "abc", "content" : "This is another content.", "status" : "published" }

即使我把筛选条件变成:

err := c_articles.Find(bson.M{"_id": bson.ObjectIdHex("5281b83afbb7f35cb62d0834")}).All(&articles)

打印出来的数据仍然是上面那样,没有值。这是为什么?

正确答案

Id bson.ObjectId

json:"id"        bson:"_id"

json和bson之间的空格是否用了tab?

终于介绍完啦!小伙伴们,这篇关于《在 Golang 中使用 mgo 包无法获取 mongodb 中对象的 "_id" 字段》的介绍应该让你收获多多了吧!欢迎大家收藏或分享给更多需要学习的朋友吧~golang学习网公众号也会发布Golang相关知识,快来关注吧!

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表