我的模型 abc.rb 中有两个验证
validates_format_of :url, :with => URI::regexp(%w(http https))
validates_format_of :targetUrl, :with => URI::regexp(%w(http https))
validates_format_of :targetUrl
没有验证输入。无论我输入什么,它都接受。我在其他我有验证的模型上遇到了同样的问题
validates_format_of :website, :with => URI::regexp(%w(http https))
。我无法弄清楚为什么验证失败
validates_format_of :targetUrl, :with => URI::regexp(%w(http https))
和validates_format_of :website, :with => URI::regexp(%w(http https))
.
任何提示都会非常有帮助。谢谢