In mongodb-go-driver, how to marshal/unmarshal BSON in to a struct

后端 未结 4 855
野趣味
野趣味 2021-02-05 21:19

I am new to mongodb-go-driver. But i am stuck.

cursor, e := collection.Find(context.Background(), bson.NewDocument(bson.EC.String(\"name\", id)))

for cursor.Nex         


        
4条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-05 22:04

    Newer "github.com/mongodb/mongo-go-driver" expects object IDs defined as

    type Application struct {
        ID      *primitive.ObjectID `json:"ID" bson:"_id,omitempty"`
    }
    

    This serializes into JSON "ID":"5c362f3fa2533bad3b6cf6f0" and here is how you get the ID from insert result

    if oid, ok := res.InsertedID.(primitive.ObjectID); ok {
        app.ID = &oid
    }
    

    Convert from string

    appID := "5c362f3fa2533bad3b6cf6f0"    
    id, err := primitive.ObjectIDFromHex(appID)
    if err != nil {
        return err
    }
    _, err = collection.DeleteOne(nil, bson.M{"_id": id})
    

    Convert into string

    str_id := objId.Hex()
    

提交回复
热议问题