有两个模型Albums
和Items
项目有多个相册图片。
我需要将标记的广播或复选框字段作为相关Album
的默认图片,但这不起作用:
f.input :avatar_item_id, :as => :boolean, :value => app_f.object_id
问候
form do |f|
f.inputs "Album" do # Album's fields
f.input :title
f.input :description
f.has_many :items do |app_f|
app_f.input :name
app_f.input :photo, :as => :file
f.input :avatar_item_id, :as => :boolean, :value => app_f.object_id #<-- :(
app_f.input :_destroy, :as => :boolean, :label => "Destroy?"
end
end
f.buttons
end