gem "formtastic", "~> 2.1.1" gem "activeadmin", "~> 0.4.2" gem "回形针"
照片字段不显示在活动管理表单 app/views/admin/products/_form.html.erb 中,但 app/views/products/_form.html.erb 中的相同表单在产品视图中正常工作
> 应用程序/管理员/products.erb
ActiveAdmin.register Product do
form :partial => "form"
end
app/views/admin/products/_form.html.erb
<%= semantic_form_for [:admin , @product ], :html => { :multipart => true } do |f| %>
<%= f.semantic_errors :name , :price , :description, :category_id %>
<%= f.inputs :new_product do%>
<%= f.input :name %>
<%= f.input :price %>
<%= f.input :description %>
<%= f.input :category_id , :as => :select , :collection => Hash[Category.all.map{|c| [c.name, c.id]}] %>
<% end %>
<%= f.inputs "Product images" do %>
<%= f.fields_for :prod_images do |p| %>
<%= p.input :photo, :as => :file, :label => "Image",:hint => p.template.image_tag(p.object.photo.url(:thumb)) %>
<%= p.input :_destroy, :as=>:boolean, :required => false, :label => 'Remove image' ,:hint => p.object.new_record? ? p.template.image_tag(p.object.photo.url(:thumb)) : p.template.image_tag(p.object.photo.url(:thumb)) %>
<%end%>
<% end %>
<%= f.actions do %>
<%= f.action :submit , :as => :button %>
<% end %>
<% end %>