私は不動産のウェブアプリを構築しています。すべての広告には無制限の数の写真 (アセット) が必要です。
Ad#new フォームでは、ユーザーが好きなだけ写真をアップロードできるオプションを提供したいと考えています。
has_many Assets の Ad モデルを作成しました。アセットは、写真用のクリップを保持するモデルです。
これはコードです:
class Asset < ActiveRecord::Base
attr_accessible :picture
has_attached_file :picture, :styles => { :large => "600x600", :medium => "300x300>", :thumb => "100x100>" }, :default_url => "/images/:style/missing.png"
belongs_to :ad
end
class Ad < ActiveRecord::Base
attr_accessible :contact_cell, :description, :price, :title, :user_id
belongs_to :user
has_many :assets, dependent: :destroy
end
ユーザーがフォームを送信する前に写真を無制限に追加するオプションをユーザーに提供したい場合、form_for はどのように見えるでしょうか?