こんにちは、私がやりたいことです...プレースホルダーが使用されていない場合、画像が追加されているかどうかを確認する方法があります。
画像がインデックスページにアップロードされた場合、画像の :thumb バージョンが使用され、ショーページでは通常の画像サイズが使用されるようにしたいと思います。
私は持っている
image_uploader.rb
include CarrierWave::RMagick
version :thumb do
process :scale => [335, 182]
end
articles_helper
def image_for(article)
if article.image.blank?
image_tag('placeholder.jpg')
else
image_tag(article.image)
end
end
index.html.erb
<p>
<%= link_to image_for(article), article %>
</p>