golang:bson.ObjectId与string转化

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

  • bson.ObjectId—>string

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

     bson.ObjectIdHex(str)

猜你喜欢

转载自www.cnblogs.com/dfsxh/p/10206601.html