问题:如何使用 Golang 在 MongoDB 中存储 UUID?

当使用 Golang 在 MongoDB 中存储github.com/google/uuidUUID 字段时,它会转换为具有子类型 0 的 base64 二进制文件。这使得无法通过 UUID 自然查询文档字段。

插入的用户如下所示:

{"_id":{"$binary":"0bHYoNWSTV+KqWSl54YWiQ==","$type":"0"},"name":"Isabella"}

通过生成的 UUIDd1b1d8a0-d592-4d5f-8aa9-64a5e7861689查询时,结果为空。

type User struct {
    UserId uuid.UUID `json:"userId" bson:"_id"`
    Name   string    `json:"name" bson:"name"`
}

func (repo userRepo) User(uuidIn uuid.UUID) (model.User, error) {
    collection := repo.database.Collection(mongoCollectionUser)
    var user model.User
    err := collection.FindOne(context.Background(),
        bson.M{"_id": uuidIn},
    ).Decode(&user)
    // err: mongo: no documents in result
}

解答

由于github.com/google/uuidUUID 类型是 zwz100007 16]byte的别名的性质,Mongo 将求助于将其存储为子类型 0x00 的 BSON 二进制文件。尝试将 UUID 转换为 BSON 的 base64 二进制格式是不切实际的。所以你可以选择使用我写的这个编码器和解码器功能,可以在这里直接插入mongo客户端结构:https://gist.github.com/SupaHam/3afe982dc75039356723600ccc91ff77

Logo

MongoDB社区为您提供最前沿的新闻资讯和知识内容

更多推荐