Delete an image with Paperclip

前端 未结 1 417
感情败类
感情败类 2020-12-19 03:39

I\'m using Paperclip to save pictures in my Rails application:

User model:

class User < ActiveRecord::Base
  has_one :profile
end
<
相关标签:
1条回答
  • 2020-12-19 04:20
    profile = current_user.profile
    profile.avatar.destroy
    profile.save
    

    You can't save object this way current_user.profile.save

    0 讨论(0)
提交回复
热议问题