我有一个模型Community
,它有一个名为的列name
我name
在子域中使用它。
例如,当用户访问 时http://rockstar.test-sample.com
,它显示的内容与http://test-sample.com/community/rockstar
显然,这name
不应该www
www
如果我在中声明,我该如何禁止models/community.rb
?
我有一个模型Community
,它有一个名为的列name
我name
在子域中使用它。
例如,当用户访问 时http://rockstar.test-sample.com
,它显示的内容与http://test-sample.com/community/rockstar
显然,这name
不应该www
www
如果我在中声明,我该如何禁止models/community.rb
?
您可能想花一些时间阅读 Active Record Validations Guide:
2.4 排除
这个助手验证属性的值不包含在给定的集合中。事实上,这个集合可以是任何可枚举的对象。
class Account < ActiveRecord::Base validates :subdomain, exclusion: { in: %w(www us ca jp), message: "Subdomain %{value} is reserved." } end
所以在你的模型中这样的东西应该可以解决问题:
validates :name, :exclusion => { in: %w[www] }