golang:bson.ObjectId与string转化

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

  • bson.ObjectId—>string

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

     bson.ObjectIdHex(str)
原文地址:https://www.cnblogs.com/dfsxh/p/10206601.html