我在嵌套的 simple_form 中有一个 Carrierwave 图像上传,除非用户没有指定文件,否则它可以工作(有点),在这种情况下,会创建一个空白的 Picture 对象,除非以前存在一个。不太确定如何制作,以便如果用户没有指定要上传的“新”图像,则不会删除旧图像和/或创建没有文件的空白记录。
我正在做的一件事(也许很奇怪)总是将登录的@user 发送到 user#edit 操作,然后构建一个 @user.picture 如果它不存在。我在想这就是我糟糕的设计所在。
# user.rb
class User < ActiveRecord::Base
[...]
has_one :picture, :dependent => :destroy
accepts_nested_attributes_for :picture
[...]
end
# picture.rb
class Picture < ActiveRecord::Base
attr_accessible :image, :remove_image
belongs_to :user
mount_uploader :image, ImageUploader
end
# users_controller.rb
def edit
if @user.picture.nil?
@user.build_picture
end
end
#_form.html.erb
<%= simple_form_for @user, :html => {:multipart => true} do |f| %>
<%= render "shared/error_messages", :target => @user %>
<h2>Picture</h2>
<%= f.simple_fields_for :picture do |pic| %>
<% if @user.picture.image? %>
<%= image_tag @user.picture.image_url(:thumb).to_s %>
<%= pic.input :remove_image, :label => "Remove", :as => :boolean %>
<% end %>
<%= pic.input :image, :as => :file, :label => "Picture" %>
<%= pic.input :image_cache, :as => :hidden %>
<% end %>
<br/>
#rest of form here
<% end %>