Railsで商品ページを作ろうとしています。これには、複数の画像の追加が含まれます。写真用とユーザー用に、製品用に 1 つのモデルがあります。写真のアップロードには paperclip gem を使用しています。しかし、私には2つの問題があります。
- ファイル入力で複数の画像を選択できない
- 写真がデータベースに保存されていないため、製品を表示しても写真が表示されない
PS私はHAMLを使用しており、フォトコントローラーを持っていません。
製品コントローラー
class ProductsController < ApplicationController
before_filter :current_user, only: [:create, :destory]
before_filter :correct_user, only: :destory
def new
@product = Product.new
@photo = Photo.new
5.times { @product.photos.build }
end
def create
@photo = current_user.photos.build(params[:photo])
@product = current_user.products.build(params[:product])
if @product.save
render "show", :notice => "Sale created!"
else
render "new", :notice => "Somehting went wrong!"
end
end
def show
@product = Product.find(params[:id])
end
商品ページを作る
= form_for @product, :html => { :multipart => true } do |f|
- if @product.errors.any?
.error_messages
%h2 Form is invalid
%ul
- for message in @product.errors.full_messages
%li
= message
%p
= f.label :name
= f.text_field :name
%p
= fields_for :photos do |f_i|
=f_i.file_field :image
%p.button
= f.submit
製品モデル
class Product < ActiveRecord::Base
attr_accessible :description, :name, :price, :condition, :ship_method, :ship_price, :quantity, :photo
has_many :photos, dependent: :destroy
accepts_nested_attributes_for :photos
belongs_to :user
写真モデル
class Photo < ActiveRecord::Base
attr_accessible :product_id
belongs_to :product
has_attached_file :image,
:styles => {
:thumb=> "100x100#",
:small => "300x300>",
:large => "600x600>"
}
end
ユーザーモデル
class User < ActiveRecord::Base
attr_accessible :email, :password, :password_confirmation, :name
attr_accessor :password
has_many :products, dependent: :destroy
has_many :photos,:through=>:products
製品ページを表示
%b seller
= @product.user.name
%br
- @product.photos.each do |photo|
= image_tag photo.image.url