Why can't I find the ID using the mgo library of golang?

前端 未结 1 708
醉梦人生
醉梦人生 2021-01-17 23:07

I am using mgo library for mongo operationg in golang and here is my code :

session.SetMode(mgo.Monotonic, true)
coll := session.DB(\"aaaw_web\").C(\"cron_em         


        
相关标签:
1条回答
  • 2021-01-17 23:19

    As the error message hints, an object id is exactly 12 bytes long (12 bytes of data). The 24 char long ID you see printed is the hexadecimal representation of the 12 bytes of the ID (1 byte => 2 hexa digits).

    Use the bson.ObjectIdHex() function to obtain a value of bson.ObjectId if the hex representation is available.

    err = coll.FindId(bson.ObjectIdHex(message.ID)).One(&result)
    

    For the reverse direction, you may use the ObjectId.Hex() method, detailed in this answer: Obtain ObjectIdHex value from mgo query

    What you did in your code is a simple type conversion (given that message.ID is of type string), and the syntax is valid because the underlying type of bson.ObjectId is string, so that basically interprets the 24 characters as bson.ObjectId type, but it is an invalid ObjectId value because it will be 24 bytes and not 12.

    0 讨论(0)
提交回复
热议问题