ruby-on-rails – 如何更改默认rails error div“field_with_errors”

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何更改默认rails error div“field_with_errors”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 sorcery认证和 twitter bootstrap.

我想通过更改默认的轨道< div class =“field_with_errors”>通过twitter的引导方式在我的注册表单上设置错误消息.它被添加到DOM中.

做这样的事情的铁路公约是什么?

我想你可以添加一些操纵DOM的javascript来重命名< div class =“field_with_errors”>,但这似乎是一个黑客.似乎应该有一种方法来重写这个在rails,但我不知道该怎么做.

这是引导需要您标记错误以使用其内置的表单错误样式:

<div class="control-group error">
  <label class="control-label" for="inputError">Input with error</label>
  <div class="controls">
    <input type="text" id="inputError">
    <span class="help-inline">Please correct the error</span>
  </div>
</div>

解决方法

从上面的链接,如果你在类Application Application Rails ::应用程序config / application.rb
config.action_view.field_error_proc = Proc.new { |html_tag,instance| 
  "<div class=\"field_with_errors control-group error\">#{html_tag}</div>".html_safe
}

当验证失败时,您的输入标签将在其周围有一个红色的标记

原文链接:https://www.f2er.com/ruby/272458.html

猜你在找的Ruby相关文章