dongwu4834 2014-04-08 07:14
浏览 72
已采纳

如何构造并通过bson文件-Go语言?

I am using Go and mongoDB in my project and mgo is to connect to connect MongoDB.

I am having following document this is to be inserted in the MongoDB

 {
     "_id" : ObjectId("53439d6b89e4d7ca240668e5"),
     "balanceamount" : 3,
     "type" : "reg",
     "authentication" : {
       "authmode" : "10",
       "authval" : "sd",
       "recovery" : {
          "mobile" : "sdfsd",
          "email" : "sds@gmail.com"
        }
      },
     "stamps" : {
        "in" : "x",
        "up" : "y"
     }
  }

I have created the BSON document as above.

I have two packages

  1. account.go

  2. dbEngine.go

account.go is used to create BSON document and send the BSON document to dbEngine.go

dbEngine.go is used to establish connection to MongoDB and insert the document. while passing BSON document to dbEngine.go

dbEngine.Insert(bsonDocument);

In dbEngine.go i am having method

func Insert(document interface{}){
 //stuff
}

Error : panic: Can't marshal interface {} as a BSON document.

Whether interface{} is not to be used for BSON document.

I am new to Go. Any suggestion or help will be grateful

  • 写回答

2条回答 默认 最新

  • duanjiashai9140 2014-04-08 08:52
    关注

    You don't need to generate a BSON document yourself.
    Let say in account.go you will have an account struct:

    type Account struct {
      Id bson.ObjectId `bson:"_id"` // import "labix.org/v2/mgo/bson"
      BalanceAmount int
      // Other field
    }
    

    Then in dbEngine.go your Insert function:

    func Insert(document interface{}){
      session, err := mgo.Dial("localhost")
      // check error
      c := session.DB("db_name").C("collection_name")
      err := c.Insert(document)
    }
    

    And then, some where in your app:

    acc := Account{}
    acc.Id = bson.NewObjectId()
    acc.BalanceAmount = 3
    
    dbEngine.Insert(&acc);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 MATLAB动图问题
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名