0

モデルに複数の画像を追加したいRailsアプリの作業を開始しました。 モデル/製品.rb

class Product < ActiveRecord::Base
belongs_to :user
belongs_to :category
has_many :comments , dependent: :destroy
has_many :product_images, :dependent => :destroy
has_attached_file :image, styles: { medium: "300x300>", thumb: "100x100>" },      default_url: "/images/:style/missing.png"
accepts_nested_attributes_for :product_images, :reject_if => lambda { |t| t['product_image'].nil? }
end

model/product_image.rb

class ProductImage < ActiveRecord::Base
belongs_to:product
    has_attached_file :image ,:styles => {
:thumb    => ['100x100#',  :jpg, :quality => 70],
:preview  => ['480x480#',  :jpg, :quality => 70],
:large    => ['600>',      :jpg, :quality => 70],
:retina   => ['1200>',     :jpg, :quality => 30]},
:path => ':rails_root/public/system/:id.:extension',
:convert_options => {
:thumb    => '-set colorspace sRGB -strip',
:preview  => '-set colorspace sRGB -strip',
:large    => '-set colorspace sRGB -strip',
:retina   => '-set colorspace sRGB -strip -sharpen 0x0.5'
}
validates_attachment_presence :image
validates_attachment_size :image , :less_than => 10.megabytes
validates_attachment_content_type :image , :content_type =>['image/jpeg','image/jpg','image/png']
validates :image, presence: true 
end

私の製品フォームは次のとおり です_form.html.erb

<%= form_for @product, url: products_path, :html => {:multipart => true,:class => " form-horizontal center"} do |f| %>
  <div class="field">
    <%= f.label :name,class:"control-label" %>
    <%= f.text_field :name,class:"form-control" %>
  </div>
  <div class="field">
    <%= f.label :price,class:"control-label" %>
    <%= f.number_field :price,class:"form-control"%>
  </div>
  <div class="field">
    <%= f.label :description,class:"control-label" %>
    <%= f.text_area :description,class:"form-control" %>
  </div>
  <div class="field">
    <%= f.label :reason,class:"control-label" %>
    <%= f.text_area :reason,class:"form-control" %>
  </div><br/>
  <div>
    <%= f.label :status,class:"control-label col-md-1" %>
    <div class="col-md-4">
   <%= f.select :status, [["available"], ["sold"]], {}, {class: "form-control"} %>
    </div>
    <%= f.label :category_id,class:"control-label col-md-1" %>
    <div class="col-md-4">
       <%= f.collection_select :category_id, Category.all, :id, :name,{ :prompt => "Category", :multiple => true},{class: "form-control"} %>
    </div>

    <% fields_for :product_images do |builder| %>
 

<h1>
<%= builder.label :caption, "Image Caption" %>
<%= builder.text_field :caption %>
</h1>
 
<p>
<%= builder.label :image, "Image File" %>
<%= builder.file_field :image %>
</p>
 
<% end %>
    </span>
  </div>
  <br/>
  <div class="actions">
    <%= f.submit "Submit", class: "btn btn-default btn-primary" %>
  </div><br/>
<% end %>

私のフォームでは、複数の画像のアップロードに使用される fields_for タグに記載されているラベルを除くすべてを見ることができます。誰かが私の問題を解決しましたが、これを使用して複数の画像をアップロードする方法を教えてもらえますか? 1つの画像選択入力が必要で、そこから複数の画像をアップロードする必要があります。製品が保存されたら、画像も表示するのを手伝ってください

4

2 に答える 2

0

あなたは書く必要があります

<%= f.fields_for :product_images do |builder| %>
于 2015-12-23T22:04:52.737 に答える
0

このfields_forメソッドは出力を生成するため、開始 erb タグの等号形式が必要です。

<%= fields_for :product_images do |builder| %>

この回答には、バリエーションのいくつかの優れたカバレッジがあります: What is the difference between <%, <%=, <%# and -%> in ERB in Rails?

を使用しているため、product_images の値を手動で処理しない限りaccepts_nested_attributes_for、 を呼び出すときに親フォーム ビルダーも使用することをお勧めします。fields_for

<%= f.fields_for :product_images do |builder| %>

ErubisRails が使用する erb のフレーバーである の 詳細については、 http ://www.kuwata-lab.com/erubis を参照してください。

于 2015-12-23T21:42:29.230 に答える