Paperclip基本配置,图片的content_type是比较全了

1
2
3
4
5
6
7
8
9
10
has_attached_file :avatar,
    :styles => { :medium => "200x200>", :thumb => "100x100>" }

validates_attachment_content_type :avatar,
    :content_type => ['image/jpg', 'image/jpeg', 'image/pjpeg', 'image/gif', 'image/png', 'image/x-png'],
    :message => "only image files are allowed"

validates_attachment_size :avatar,
    :less_than => 1.megabyte, #another option is :greater_than
    :message => "max size is 1M"

    Posted by holin At January 08, 2009 13:02

请登录以发表评论。