登录
首页 >  Golang >  Go问答

如何使用 Golang 处理 MongoDB 文档中的数据?

来源:stackoverflow

时间:2024-04-05 15:27:34 350浏览 收藏

Golang不知道大家是否熟悉?今天我将给大家介绍《如何使用 Golang 处理 MongoDB 文档中的数据?》,这篇文章主要会讲到等等知识点,如果你在看完本篇文章后,有更好的建议或者发现哪里有问题,希望大家都能积极评论指出,谢谢!希望我们能一起加油进步!

问题内容

我使用 findone() 获取文档

这就是文档在 golang 中的呈现方式:

map[
    _id:objectid("12") 
    chatid:12 
    expenses:[
    map[amount:12 category:food] 
    map[ ​amount:14 category:food]] 
   ​income:[]]

这是 mongodb atlas 中的方式:

{"_id":{"$oid":"12"},
"chatID":{"$numberInt":"12"},
"expenses":[
   ​{"category":"food","amount":{"$numberDouble":"12.0"}},
   ​{"category":"food","amount":{"$numberDouble":"14.0"}}],
"income":[]}

如何分别处理每一行?例如,如何打印每项费用的类别和金额?


正确答案


type list struct {
    category string  `bson:"category"`
    amount   float32 `bson:""amount"`
}

type document struct {
    id       primitive.objectid `bson:"_id, omitempty"`
    chatid   int                `bson:"chatid"`
    expenses []list             `bson:"expense"`
    income   []list             `bson:"income"`
}

mydoc := document
client.collection.findone(context.todo(), bson.d{}).decode(&mydoc)

您需要此 mongodb 文档的结构:

type fulfillment struct {
    id       primitive.objectid       `bson:"_id"`
    chatid   int64                    `bson:"chatid"`
    expenses []map[string]interface{} `bson:"expenses"`
}

如果你使用mongodb官方库:

var fulfillment Fulfillment
err = client.Database("test_data").Collection("fulfillment").FindOne(ctx, bson.M{"chatID": 100000000012}).Decode(&fulfillment)
if err != nil {
    log.Fatal(err)
}

fmt.Printf("%d\n", fulfillment.ChatID)
fmt.Printf("%s\n", fulfillment.Id.Hex())
for _, expensive := range fulfillment.Expenses {
    for k, v := range expensive {
        switch v.(type) {
        case string:
            fmt.Printf("%s: %s \n", k, v)
        case float64:
            fmt.Printf("%s: %f \n", k, v)
        }
    }
}

希望对你有帮助

以上就是《如何使用 Golang 处理 MongoDB 文档中的数据?》的详细内容,更多关于的资料请关注golang学习网公众号!

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