我正在使用paperclip上传各种文件(文本文档,二进制文件,图像)。
我想把它放在我的模型中:
has_attached_file :attachment, :styles => { :medium => "300x300>", :thumb => "100x100>" }
但如果是图像,则必须执行 样式。我尝试添加
if :attachment_content_type =~ /^image/
但它不起作用。
答案 0 :(得分:15)
您可以使用before_<attachment>_post_process
回调来暂停非图像的缩略图生成。如果您在回调中返回false
,则不会尝试使用样式。
请参阅docs
中的“活动”部分 before_attachment_post_process :allow_only_images
def allow_only_images
if !(attachment.content_type =~ %r{^(image|(x-)?application)/(x-png|pjpeg|jpeg|jpg|png|gif)$})
return false
end
end
答案 1 :(得分:3)
可能你需要这样的东西:
:styles => lambda { |attachment|
!attachment.instance.image? ? {} : {:thumb => "80x24", :preview => "800x600>"}
}
在模型中定义方法:
def image?
attachment.content_type.index("image/") == 0
end
答案 2 :(得分:1)
您可以在模型上使用
`has_attached_file :avatar,
:styles => lambda { |a| if a.content_type =~ %r{^(image|(x-)?application)/(x-png|pjpeg|jpeg|jpg|png|gif)$}
{
:thumb => "100x100#",
:medium => "300x300>",
}
else
Hash.new
end
},:default_url => "/missing.png"`