3

gem "formtastic"、 "〜> 2.1.1" gem "activeadmin"、 "〜> 0.4.2" gem "paperclip"

写真のフィールドはアクティブな管理フォームapp/views / admin / products / _form.html.erbには表示されませんが、app / views / products/_form.html.erbの同じフォームは製品のビューで正しく機能します

> app / admin / 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 %>
4

2 に答える 2

6

私は解決策を見つけました。

active_adminでペーパークリップを使用する場合は、has_manyアソシエーションを使用できないため、外部フォームをレンダリングできません。私の解決策:

ActiveAdmin.register Product do
  form :html => { :multipart=>true } do |f|
    f.inputs :new_product  do
      f.input :name
      f.input :price
      f.input :category
      f.input :description

      f.has_many :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'
      end
    end

    f.buttons  
  end
end
于 2012-07-23T16:16:41.983 に答える
1

ペーパークリップでアップロードされた画像をアクティブな管理者編集/新しいフォームで表示するための解決策を見つけるためにここに来る人々のために。

ActiveAdmin.register Product do

  form :html => { :enctype => "multipart/form-data" } do |f|
    f.inputs do
      f.input :title
    end

    f.inputs for: :prod_images do |product_image|
      if product_image.object.new_record?
        product_image.input :image
      else
        product_image.input :image, as: :file, hint: product_image.template.image_tag(product_image.object.image.url(:thumb))
      end
    end

    f.buttons
  end

ここでの重要なアイデアは、ヒント属性を使用することです。

于 2013-12-17T19:33:29.823 に答える