在我的 Rails 项目中,我使用 Carrierwave 通过雾将图像上传到 S3。到目前为止,我的 CRUD 频谱的创建读取和删除部分都在工作。
我的问题是编辑/更新部分。_form.html.erb
我使用与创建记录相同的方式进行编辑。当我单击编辑链接时,表单会将我的所有数据加载到表单字段中以进行编辑,但图像除外。表单域是空白的,好像没有与记录关联的图像。
如何更新已保存到 S3 的图像?
模型/listing.rb
class Listing < ActiveRecord::Base
attr_accessible :body, :price, :title, :image
mount_uploader :image, ListingUploader
end
Controllers/listings_controller.rb(编辑/更新部分)
def edit
@listing = Listing.find(params[:id])
end
def update
@listing = Listing.find(params[:id])
if @listing.update_attributes(params [:listing])
redirect_to :action => 'show', :id => @listing
else
render :action => 'edit'
end
end
_form.html.erb
<%= form_for @listing, :html => { :multipart => true } do |l| %>
<p>
<%= l.label :title %>
<%= l.text_field :title %>
</p>
<p>
<%= l.label :price %>
<%= l.text_field :price %>
</p>
<p>
<label>Upload a Picture</label>
<%= l.file_field :image %>
<%= l.hidden_field :image_cache %>
</p>
<div class="image-pre">
<%= image_tag(@listing.image_url(:thumb)) if @listing.image? %>
</div>
<p>
<%= l.label :body %>
<%= l.text_area :body, :class => "tinymce" %>
<%= tinymce %>
</p>
<%= l.submit %>
<% end %>