web-dev-qa-db-ja.com

フィールドの横にエラーメッセージを表示する方法

入力フィールド/ラベルなどを含むフォームがあります。フィールドの横にエラーメッセージを表示するにはどうすればよいですか?上部に集まる代わりに?

私はデバイスを使用しています、Rails 3

私はこれを私のフォームの一番上に持っています:

 = form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f|
- if resource.errors.any?
  #errorExplanation
    %h2
      = pluralize(resource.errors.count, "error")
      prevented this user from being saved:
    %ul
      - resource.errors.full_messages.each do |msg|
        %li
          = msg
29
newbie_86

これを使えます

- if @resource.errors[:field_name]
  ...

また便利なリンク:

http://guides.rubyonrails.org/active_record_validations.html#working-with-validation-errors

36
fl00r

初期化フォルダーにファイルを作成するだけです。

config/initializers/inline_errors.rb

その中にこのコードを置きます:

ActionView::Base.field_error_proc = Proc.new do |html_tag, instance|
  unless html_tag =~ /^<label/
    %{<div class="has-error">#{html_tag}<span class="help-block">#{instance.error_message.first}</span></div>}.html_safe
  else
    %{#{html_tag}}.html_safe
  end
end

PD:私の英語でごめんね。

6
el_quick

これはどう

エラーメッセージをテキストフィールドのすぐ下に置きたい場合は、次のようにすることができます

.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_first_name" for="user_first_name" class="signup-error alert alert-danger">This field is required.</div>
<script>document.onreadystatechange = function(){$('#error_user_first_name').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ここで使用する変数です。今すぐ、またファイルを変更した後は、Restartを忘れないでください)構成ディレクトリ内。

4
illusionist

Error_message_onを使用できます http://apidock.com/Rails/ActionView/Helpers/ActiveRecordHelper/error_message_on

更新:

form.error_messagesはRailsから削除され、プラグインとして使用できるようになりました。Rails plugin install git://github.com/Rails/dynamic_form.gitでインストールしてください。

0
krunal shah