我在Rails中使用simple_form gem来创建表单。要处理我正在使用的服务器端错误:
<%= f.error_notification %>
当提交表单并生成服务器端错误时,它们会在p标记中生成,如下所示:
<p class="error_notification">Here are all the errors....</p>
我希望在 p 元素周围包含一个 div ,因为我想通过CSS为消息容器创建一个红色背景,我不想要直接设置 P 元素的样式。有没有办法在raails中使用simple_form做到这一点?
答案 0 :(得分:0)
我在这里看到了这一点:https://github.com/plataformatec/simple_form/blob/master/lib/generators/simple_form/templates/config/initializers/simple_form.rb,第65行
# Default tag used for error notification helper.
config.error_notification_tag = :div