【发布时间】:2011-03-17 19:04:57
【问题描述】:
我正在使用 Paperclip 将图片保存在我的 Rails 应用程序中:
用户模型:
class User < ActiveRecord::Base
has_one :profile
end
轮廓模型:
class Profile < ActiveRecord::Base
has_attached_file :avatar, :styles => {:medium => "300x300>", :thumb => "100x100>"}
belongs_to :user
end
我尝试删除头像:
current_user.profile.avatar = nil
current_user.profile.save
但它不起作用。有可能吗?
【问题讨论】:
标签: ruby-on-rails file-upload paperclip