【发布时间】:2016-03-08 21:52:38
【问题描述】:
我正在尝试验证是否选择了“从不”单选按钮,或者选择了带有日期的“日期”(带有 datepicker),因此是:expiry_date。
:expires 是 string type。
:expiry_date 是 date type。
f.input :expires, as: :radio, :collection => ["Never", "Date"]
f.input :expiry_date, as: :string, :wrapper_html => { :class => "date_picker"}
这是我目前的验证。
validates :expires,
inclusion: { in: ["Never", "Date"],
presence: { message: "none selected"}}
validates :expiry_date, presence: true
【问题讨论】:
标签: ruby-on-rails-4 activeadmin formtastic