不能得到< div class =“fieldWithErrors”>是正常的行为吗?包含arround选择有验证错误的标签?我个人认为没有理由为什么选择标签应该与其他表格标签(输入,textarea)区别对待.
我确实在该字段的error_messages_for和error_message_on方法中得到错误.
PS.我已经改变了一点ActionView :: Base.field_error_proc以获得span标签而不是div,但这不是问题.
ActionView::Base.field_error_proc = Proc.new { |html_tag,instance| #if I puts html_tag here I only get the <input> tags "<span class=\"fieldWithErrors\">#{html_tag}</span>" }
解决方法
问题(对我来说至少)是我的f.select:whatever_id在object.errors对象中寻找一个关键字:whatever_id,当我的验证实际上是:无论如何,不是:whatever_id.
我通过改变来解决这个恼人的问题
object.errors.on(@method_name)
至
object.errors.on(@method_name) || object.errors.on(@method_name.gsub(/_id$/,''))
这是差异(针对Rails 2.3.4):
diff --git a/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb b/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb index 541899e..5d5b27e 100644 --- a/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +++ b/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb @@ -247,7 +247,7 @@ module ActionView alias_method :tag_without_error_wrapping,:tag def tag(name,options) if object.respond_to?(:errors) && object.errors.respond_to?(:on) - error_wrapping(tag_without_error_wrapping(name,options),object.errors.on(@method_name)) + error_wrapping(tag_without_error_wrapping(name,object.errors.on(@method_name) || object.errors.on(@method_name.gsub(/_id$/,''))) else tag_without_error_wrapping(name,options) end @@ -256,7 +256,7 @@ module ActionView alias_method :content_tag_without_error_wrapping,:content_tag def content_tag(name,value,options) if object.respond_to?(:errors) && object.errors.respond_to?(:on) - error_wrapping(content_tag_without_error_wrapping(name,object.errors.on(@method_name)) + error_wrapping(content_tag_without_error_wrapping(name,''))) else content_tag_without_error_wrapping(name,options) end