In rails 5, how do I only have one validation message if I leave a field empty/blank?

701 Views Asked by At

I'm using Rails 5. I have this in my model ...

  belongs_to :crypto_currency

  validates :crypto_currency, presence: true

The issue is when I save my model from a form, two errors come back if I don't set a value for the "Crypto_currency" field ...

Crypto currency must exist
Crypto currency Please select a value for crypto currency.

This is my config/locales/en.yml file. I still have to work out how to remove the "Crypto currency" words from the "Crypto currency Please select a value for crypto currency." error message, but you can clearly see I have only defined one error message in the file

en:
  activerecord:
    errors:
      models:
        user_notification:
          attributes:
            crypto_currency:
              blank: "Please select a value for crypto currency."

How do I only have one error message for my model's field if it is not entered?

Edit: In respone to comments, here's how I display ther ror messages

  <ul>
  <% @user_notification.errors.full_messages.each do |message| %>
    <li><%= message %></li>
  <% end %>
  </ul>
2

There are 2 best solutions below

0
On BEST ANSWER

Try to change your model like this:

belongs_to :crypto_currency, optional: true
validates :crypto_currency, presence: true

And

en:  
  activerecord:
    attributes:
      user_notification:
        crypto_currency: ""
    errors:
      models:
        user_notification:
          attributes:
            crypto_currency:
              blank: "Please select a value for crypto currency."
9
On

Rails 5 makes belongs_to association required by default

belongs_to :crypto_currency adds validation, so you don't need your own.

You can skip belongs_to default validation like this:

belongs_to :crypto_currency, optional: true

Or delete your own and customize the default error message