sql >> Base de Datos >  >> NoSQL >> MongoDB

golang mongodb (mgo) no está insertando documentos

Debe exportar los campos comenzando el nombre del campo con una letra mayúscula.

type AN_Track_Log struct {
  Id                       bson.ObjectId `bson:"_id,omitempty"`
  User_session_id_str      string       `bson:"user_session_id_str"`

  Googleanaly_pixel_id_str string `bson:"googleanaly_pixel_id_str"`
  ...
}