accepts_nested_attributes_forを用いて、
Productモデルの子モデル、Imageモデルに、
画像を複数枚アップローダーにアップロードしたいのですが、
@product.saveが成功しません。
なにか間違いありますでしょうか?
gemはcarrierwave と ImageMagick
を使用しています。
該当モデル構成は以下の通りです。
Productモデル カラム
・title string型
・description text型
・price integer型
・stock_quantity integer型
Imageモデル カラム
・image text型
・product string型
・references string型
・product_id integer型
※他になにか記述が必要であればすぐに追加しますので教えて下さい。
よろしくお願い致します。
↓product.rb (productモデル) class Product < ApplicationRecord has_many :images, dependent: :destroy accepts_nested_attributes_for :images, allow_destroy: true end
↓image.rb (imageモデル) class Image < ApplicationRecord belongs_to :product, optional: true mount_uploader :image, ImageUploader end
↓Products.controller.rb (Productコントローラ) class ProductsController < ApplicationController def new @product = Product.new(product_params) 5.times { @product.images.build } end def create @product = Product.new(product_params) if @product.save redirect_to root_path, notice:'商品を登録しました' else render :new end end private def product_params params.permit(:title, :description, :price, :stock_quantity, images_attributes: [:images]) end end
↓/views/products/new.html.erb (product newページview) <p>商品登録</p> <div class="form-wrapper"> <%= form_with model: @product, local: true do |f| %> <div class="form"> <p>商品名(20文字以内)</p> <%= f.text_field :title, :placeholder => "商品名(20文字以内)" %> </div> <div class="form"> <p>商品説明(500文字以内)</p> <%= f.text_area :description, :placeholder => "商品説明(500文字以内)", :cons => "20", :wrap => "hard" %> </div> <div class="form"> <p>価格(税込)※数字のみ記述</p> <%= f.number_field :price, :placeholder => "価格(税込)※数字のみ記述" %> </div> <div class="form"> <p>在庫数 ※数字のみ記述</p> <%= f.number_field :stock_quantity, :placeholder => "在庫数 ※数字のみ記述" %> </div> <div class="form img"> <p>画像(1枚必須・5枚まで任意)</p> <%= f.fields_for :images do |image| %> <%= image.label :image, '画像' %> <%= image.file_field :image %> <% end %> </div> <div class="form"> <%= f.submit value="登録" %> </div> <% end %> </div>
↓image_uploader.rb (イメージアップローダー) class ImageUploader < CarrierWave::Uploader::Base include CarrierWave::MiniMagick if Rails.env.development? storage :file elsif Rails.env.test? storage :file else storage :fog end def store_dir "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}" end #サムネイルの為に画像をリサイズ version :thumb do process resize_to_fill: [180, 180,"Center"] end version :thumb50 do process resize_to_fill: [400, 400,"Center"] end end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。