1

我在嵌套的 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 %>
4

3 回答 3

2

我想我遇到了同样的问题,我通过将 reject_if 选项添加到 Accept_nested_attribute 来解决。所以在你的例子中,你可以做类似的事情

class User < ActiveRecord::Base
[...]

  has_one :picture, :dependent => :destroy
  accepts_nested_attributes_for :picture,
    :reject_if => lambda { |p| p.image.blank? }

[...]
end
于 2012-02-28T21:08:45.590 回答
0

今天我遇到了同样的问题,我解决了这个问题:

  accepts_nested_attributes_for :photos,
    :reject_if => :all_blank
于 2012-03-10T16:56:02.493 回答
0

当您使用 build_* 时,它会在对象上设置外键。(类似于说 Picture.new(:user_id => id) )

尝试这个

# users_controller.rb
def edit
  if @user.picture.nil?
    @user.picture = Picture.new
  end
end
于 2011-11-09T14:25:28.323 回答