Удалить изображение с помощью скрепки - PullRequest
9 голосов
/ 17 марта 2011

Я использую 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

, но он не работает.Возможно ли это?

1 Ответ

13 голосов
/ 17 марта 2011
profile = current_user.profile
profile.avatar.destroy
profile.save

Вы не можете сохранить объект таким образом current_user.profile.save

...