Rails如何在关联时获取特定的错误消息

时间:2013-10-01 05:50:43

标签: ruby-on-rails associations message

我实际上很难弄清楚如何获得与特定关联相关的第一条错误消息。 在我的表单中,我必须在每个相关字段下显示错误,例如:

= f.text_field :price, class: 'form-control'
  - if @item.errors.has_key? :price
    = content_tag :span, @item.errors[:price].first, class: 'form-error'

这适用于模型基础属性。但是,我的Item模型通过多态关联链接到另一个模型。显示errors.full_messages时,我得到["Attachments name doit être rempli(e)"]。这是关系:

has_many :attachments, as: :attachable, dependent: :destroy
accepts_nested_attributes_for :attachments
validates :name, presence: true

如何获取此关联返回的错误?

1 个答案:

答案 0 :(得分:0)

好的,我终于找到了使用@post.errors.inspect的解决方案。这是我需要做的:

@post.errors[:'attachments.name'].first

希望它能帮助人们面对同样的问题