作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个具有以下枚举的模型:
# Schema
# account_type :integer, not null
enum account_type: {
user: 1,
deposit: 2,
withdrawal: 3,
fee: 4
}
我必须确保只有一个 :deposit
、:withdrawal
和 :fee
帐户存在,但允许无限数量的:user
帐户。我该如何进行模型验证?
最佳答案
您可以将条件传递给唯一性验证
validates :account_type, uniqueness: true, if: '!account_type.user?'
关于ruby-on-rails - rails : How do I validate uniqueness of certain types in an enum,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38783277/
我是一名优秀的程序员,十分优秀!