dongshou6041 2016-02-17 11:57
浏览 38
已采纳

在mgo中定义MongoDB模式/集合

I want to use mgo to create/save a MongoDB collection. But I would like to define it more extensively (for e.g to mention that one of the attribute is mandatory, another one is of an enum type and has a default value).

I have defined the struct like this, but don't know how to describe the constraints on it.

type Company struct {
    Name        string `json:"name" bson:"name"` // --> I WANT THIS TO BE MANDATORY
    CompanyType string `json:"companyType" bson:"companyType"` // -->I WANT THIS TO BE AN ENUM
}

Is this possible to do in mgo, like how we can do it in MongooseJS?

  • 写回答

1条回答 默认 最新

  • doupao3662 2016-02-17 14:43
    关注

    mgo isn't an ORM or a validation tool. mgo is only an interface to MongoDB.

    It's not bad to do validation all by yourself.

    type CompanyType int
    
    const (
      CompanyA CompanyType = iota // this is the default
      CompanyB CompanyType
      CompanyC CompanyType
    )
    
    type Company struct {
      Name string
      CompanyType string
    }
    
    func (c Company) Valid() bool {
      if c.Name == "" {
        return false
      }
      // If it's a user input, you'd want to validate CompanyType's underlying
      // integer isn't out of the enum's range.
      if c.CompanyType < CompanyA || c.CompanyType > CompanyB {
        return false
      }
      return true
    }
    

    Check this out for more about enums in Go.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料