faseUtilizzare Carrierwave con un uno a molti relazione tra i modelli
Immagine un'applicazione galleria. Ho due modelli Handcraft
e Photos
. Uno artigianale può avere molte foto, supponiamo di avere modelli come questo:
Handcraft(name:string)
Photo(filename:string, description:string, ...)
In _form.html.erb
di artigianato, c'è:
<%= form_for @handcraft, html: {multipart: true} do |f| %>
# ... other model fields
<div class="field">
<%= f.label :photo %><br />
<%= f.file_field :photo %>
</div>
# ... submit button
<% end %>
handcraft.rb
assomiglia a questo:
class Handcraft < ActiveRecord::Base
attr_accessible :photo
has_many :photos
mount_uploader :photo, PhotoUploader
# ...
end
photo_uploader.rb
:
class PhotoUploader < CarrierWave::Uploader::Base
include CarrierWave::RMagick
storage :file
def store_dir
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end
version :thumb do
process :resize_to_limit => [100, 100]
end
def extension_white_list
%w(jpg jpeg gif png)
end
end
Problema
Quando ho presentare il modulo, getta questo errore:
NoMethodError (undefined method `photo_will_change!' for #<Handcraft:0xb66de424>):
Domanda
Come devo usare/configurare Carrierwave in questo caso?