17

我在活动管理员中显示错误消息时遇到问题。

我收到了与表单中的字段一起显示的所有错误消息。但在下面的代码中,我需要添加至少一项技能和最多 5 项技能。否则需要抛出错误消息。

我在模型中添加了一个验证:

验证 :skills, :length => { :minimum => 1, :maximum => 5, :message => " 应至少为 1 且小于 5"}

这完美验证,但没有显示错误消息。

任何人都可以帮助我显示错误消息。

以下是代码:

form :html => { :enctype => "multipart/form-data" } do |f|

    f.inputs "User", :multipart => true do

        f.input :name
        f.input :email,  :as => :email
        f.input :profile_name
        f.input :date_of_birth
        f.input :gender,  :as => :select, :collection => Gender::GENDERS
      end
      f.inputs "Skills* ( minimum 1 & maximum 5 )" do
        f.has_many :skills do |p|
          if !p.object.nil?
            # show the destroy checkbox only if it is an existing appointment
            # else, there's already dynamic JS to add / remove new appointments
            p.input :_destroy, :as => :boolean, :label => "Destroy?",
                    :hint => "Check this checkbox, if you want to delete this field."
          end
          p.input :description
          p.input :title
        end
      end
    end
  end
4

2 回答 2

37

github 上提供了 activeadmin 0.5.1。它包含更改日志中的下一行

“添加对 @robdiciuccio 的语义错误 #905 的支持”

这是具有此功能的拉取请求 https://github.com/gregbell/active_admin/pull/905

例子

form do |f|
  f.semantic_errors *f.object.errors.keys
  f.inputs
  f.inputs "Locations" do
    f.has_many :locations do |loc|
      loc.input :address
      loc.input :_destroy, :as => :boolean, :label => "Delete"
    end
  end
  f.buttons
end

使用它添加到 Gemfile

gem 'activeadmin', :git =>  "git://github.com/gregbell/active_admin.git", :tag => "v0.5.1"
于 2012-12-15T01:02:01.890 回答
0

为了通过验证,试试这个

validates_length_of :skills,
  :within => 1..5,
  :too_short => 'too short message',
  :too_long => 'too long message'
于 2012-11-26T04:36:24.437 回答