How can I restrict Paperclip to only accept images?

前端 未结 2 845
醉酒成梦
醉酒成梦 2021-02-07 20:22

How can I restrict Paperclip to only accept images? I\'m using Amazon S3 for storage if that\'s relevant. Thanks for reading.

2条回答
  •  失恋的感觉
    2021-02-07 20:33

    From https://makandracards.com/makandra/606-only-allow-pictures-as-paperclip-attachments

    validates_attachment_content_type :image, :content_type => /^image\/(jpg|jpeg|pjpeg|png|x-png|gif)$/, :message => 'file type is not allowed (only jpeg/png/gif images)'
    

提交回复
热议问题