ネストされた属性を使用して2つのモデルにデータを入力するsimple_formgemを使用して作成されたフォームがあります。エラーがないか確認して、新しいブロックを表示したい。ただし、モデルのlocation
属性のエラーメッセージに正しくアクセスする方法がわかりません。Booking
class Booking < ActiveRecord::Base
belongs_to :customer
attr_accessible :date_wanted, :location
end
と
class Customer < ActiveRecord::Base
has_many :bookings
accepts_nested_attributes_for :bookings
attr_accessible :name, :phone, :bookings_attributes
validates_presence_of :name, :phone
end
フォームビュー:
simple_form_for @customer, {:html => { :class => "form-horizontal" }} do |f|
= f.input :name
= f.input :phone
= f.simple_fields_for :bookings do |b|
= b.input :date
= b.input :location
- if @customer.errors[:appointments_attributes][:location]
# insert code if any validation errors for the date field were found
= f.button :submit