使用Paperclip删除图像

Mar*_*lmi 9 file-upload ruby-on-rails paperclip

我正在使用Paperclip在我的Rails应用程序中保存图片:

用户模型:

class User < ActiveRecord::Base
  has_one :profile
end
Run Code Online (Sandbox Code Playgroud)

档案型号:

class Profile < ActiveRecord::Base
  has_attached_file :avatar, :styles => {:medium => "300x300>", :thumb => "100x100>"}
  belongs_to :user
end
Run Code Online (Sandbox Code Playgroud)

我尝试删除头像:

current_user.profile.avatar = nil
current_user.profile.save
Run Code Online (Sandbox Code Playgroud)

但它不起作用.可能吗?

fl0*_*00r 13

profile = current_user.profile
profile.avatar.destroy
profile.save
Run Code Online (Sandbox Code Playgroud)

你不能这样保存对象 current_user.profile.save