web-dev-qa-db-ja.com

表示方法Ruby on Railsフォーム検証エラーメッセージを1つずつ

私はこれを達成する方法を理解しようとしています。誰かが私に助言したり、正しい方向に私を向けることができますか?

これにより、各フィールドから1つのエラーを一度に表示できます。それは私がほぼやりたいことですが、厳密にはそうではありません。一度に1つのエラーメッセージ全体を表示したい。例えば。名を空白にすることはできません。それが解決されると、次のエラーに移ります。そのため、ユーザーが姓に番号を追加した場合、空白にはなりませんが、文字のみが許可されているなどのエラーが表示されます。そのエラーが修正されると、彼らの姓を正しく出してください。

<% @user.errors.each do |attr, msg| %>
<%= "#{attr} #{msg}" if @user.errors[attr].first == msg %> 
<% end %>
39
LondonGuy

数時間の実験の後、私はそれを理解しました。

<% if @user.errors.full_messages.any? %>
  <% @user.errors.full_messages.each do |error_message| %>
    <%= error_message if @user.errors.full_messages.first == error_message %> <br />
  <% end %>
<% end %>

さらに良い:

<%= @user.errors.full_messages.first if @user.errors.any? %>
29
LondonGuy

ActiveRecordは、検証エラーをerrorsという配列に保存します。 Userモデルがある場合、次のように特定のインスタンスの検証エラーにアクセスします。

@user = User.create[params[:user]] # create will automatically call validators

if @user.errors.any? # If there are errors, do something

  # You can iterate through all messages by attribute type and validation message
  # This will be something like:
  # attribute = 'name'
  # message = 'cannot be left blank'
  @user.errors.each do |attribute, message|
    # do stuff for each error
  end

  # Or if you prefer, you can get the full message in single string, like so:
  # message = 'Name cannot be left blank'
  @users.errors.full_messages.each do |message|
    # do stuff for each error
  end

  # To get all errors associated with a single attribute, do the following:
  if @user.errors.include?(:name)
    name_errors = @user.errors[:name]

    if name_errors.kind_of?(Array)
      name_errors.each do |error|
        # do stuff for each error on the name attribute
      end
    else
      error = name_errors
      # do stuff for the one error on the name attribute.
    end
  end
end

もちろん、最初のエラーをユーザーなどに表示したい場合は、コントローラーではなくビューでこれを行うこともできます。

62
Wade Tandy

より良いアイデア、

エラーメッセージをテキストフィールドのすぐ下に配置する場合は、次のようにします。

.row.spacer20top
  .col-sm-6.form-group
    = f.label :first_name, "*Your First Name:"
    = f.text_field :first_name, :required => true, class: "form-control"
    = f.error_message_for(:first_name)

error_message_forとは?
->さて、これはクールなことをするための美しいハックです

# Author Shiva Bhusal
# Aug 2016
# in config/initializers/modify_Rails_form_builder.rb
# This will add a new method in the `f` object available in Rails forms
class ActionView::Helpers::FormBuilder
  def error_message_for(field_name)
    if self.object.errors[field_name].present?
      model_name              = self.object.class.name.downcase
      id_of_element           = "error_#{model_name}_#{field_name}"
      target_elem_id          = "#{model_name}_#{field_name}"
      class_name              = 'signup-error alert alert-danger'
      error_declaration_class = 'has-signup-error'

      "<div id=\"#{id_of_element}\" for=\"#{target_elem_id}\" class=\"#{class_name}\">"\
      "#{self.object.errors[field_name].join(', ')}"\
      "</div>"\
      "<!-- Later JavaScript to add class to the parent element -->"\
      "<script>"\
          "document.onreadystatechange = function(){"\
            "$('##{id_of_element}').parent()"\
            ".addClass('#{error_declaration_class}');"\
          "}"\
      "</script>".html_safe
    end
  rescue
    nil
  end
end

結果enter image description here

エラー後に生成されるマークアップ

<div id="error_user_email" for="user_email" class="signup-error alert alert-danger">has already been taken</div>
<script>document.onreadystatechange = function(){$('#error_user_email').parent().addClass('has-signup-error');}</script>

対応するSCSS

  .has-signup-error{
    .signup-error{
      background: transparent;
      color: $brand-danger;
      border: none;
    }

    input, select{
      background-color: $bg-danger;
      border-color: $brand-danger;
      color: $gray-base;
      font-weight: 500;
    }

    &.checkbox{
      label{
        &:before{
          background-color: $bg-danger;
          border-color: $brand-danger;
        }
      }
    }

注:Bootstrapここで使用される変数

8
illusionist

私はこのように解決しました:

<% @user.errors.each do |attr, msg| %>
  <li>
    <%= @user.errors.full_messages_for(attr).first if @user.errors[attr].first == msg %>
  </li>
<% end %>

このようにして、エラーメッセージにロケールを使用しています。

2
nscherzer