4

有没有办法在 validates 函数中将 html 添加到自定义验证错误消息中?

例如:

class Product < ActiveRecord::Base
  validates :legacy_code, :format => { :with => /\A[a-zA-Z]+\z/,
    :message => "Only letters allowed <a href=\"www.example.com\"> Check here </a> " }
end

执行上述操作只是给出了一个字符串文字,而浏览器没有将其解释为带有标签的 html。

我尝试使用语言环境,但这似乎是一种更复杂的方法。我搜索了一堆网站,还尝试覆盖 field_error_proc 方法。

例如:

ActionView::Base.field_error_proc = Proc.new do |html_tag, instance|
  errors = Array(instance.error_message).join(',')
  %(#{html_tag}<span class="validation-error">&nbsp;#{errors}</span>).html_safe

end

以上方法有效,但给出的错误消息数量是预期的两倍。

这里的任何帮助将不胜感激。

通过在错误消息部分中使用 .html_safe解决:

<% if @user.errors.any? %>
  <div id="error_explanation">
    <div class="alert alert-error">
      The form contains <%= pluralize(@user.errors.count, "error") %>.
    </div>
    <ul>
    <% @user.errors.full_messages.each do |msg| %>
      <li>* <%= msg.html_safe %></li>
    <% end %>
    </ul>
  </div>
<% end %>
4

1 回答 1

4

当您输出错误时,请使用raw

<%= raw f.errors %>
于 2012-04-17T22:34:29.250 回答