golang:bson.ObjectId与string转化

网上资料不好搜,记下来:
两个变量:
id bson.ObjectId
str string

  • bson.ObjectId—>string

     id.Hex()
    
  • string—>bson.ObjectId

     bson.ObjectIdHex(str)
    

你可能感兴趣的:(golang)