Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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" : "[email protected]"
        }
      },
     "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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...