如何使用验证来要求一定数量的实例(另一个类的)与实例关联?
我正在使用普通的 Ruby。我有一个“Restaurant”类,需要与至少 10 个“Dish”类实例关联。
class Restaurant<ActiveRecord::Base
has_many :dishes
validates :dishes, :length=>{:minimum=>10}
end
要求菜肴至少有 10 个字符,而不是相关菜肴的数组长度至少为 10。
I am using plain Ruby. I have a "Restaurant" class that needs to be associated with at least 10 instances of a "Dish" class.
class Restaurant<ActiveRecord::Base
has_many :dishes
validates :dishes, :length=>{:minimum=>10}
end
requires a dish to have a minimum of 10 characters, rather than an array of associated dishes to have a length of at least 10.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论