Paperclip - delete a file from Amazon S3?

最后都变了- 提交于 2020-01-01 10:58:12

问题


I need to be able to delete files from S3 that are stored by users, such as profile photos. Just calling @user.logo.destroy doesn't seem to do the trick - I get [paperclip] Saving attachments. in the logs and the file stays right there in the S3 bucket.

How can the file itself be removed?


回答1:


This are the methods from Paperclip that can be used to remove the attachments:

# Clears out the attachment. Has the same effect as previously assigning
# nil to the attachment. Does NOT save. If you wish to clear AND save,
# use #destroy.
def clear(*styles_to_clear)
  if styles_to_clear.any?
    queue_some_for_delete(*styles_to_clear)
  else
    queue_all_for_delete
    @queued_for_write  = {}
    @errors            = {}
  end
end

# Destroys the attachment. Has the same effect as previously assigning
# nil to the attachment *and saving*. This is permanent. If you wish to
# wipe out the existing attachment but not save, use #clear.
def destroy
  clear
  save
end

So you see, destroy only removes the attachment if no error occurs. I have tried it with my own setup against S3 so I know that destroy works.

Could the problem in your case possible be that you have any validations that cancels the save? I.e validates_attachment_presence or something similar?

I think one way to find out would be to try @user.logo.destroy and then check the content of @user.errors to see if it reports any error messages.




回答2:


This seems like an answer to your question, although I don't totally understand their distinction between destroy and clear (I don't know which model has_attached_file, page or image):

Rails Paperclip how to delete attachment?



来源:https://stackoverflow.com/questions/4450530/paperclip-delete-a-file-from-amazon-s3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!