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
account.go
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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…