我想查看一些数据,并想检查是否有图片。我目前正在使用.try:
obj.obj_images.try(:first).try(:photo_url)
但是,因为我使用了carrierwave,并设置了多个图片版本,如何将:medium
添加到其中?
我试过
obj.obj_images.try(:first).try(:photo_url(:medium))
但那显然是错的。
答案 0 :(得分:1)
您的意思是photo_url
是obj.obj_images.try(:first).try(:photo_url, :medium)
方法的参数吗?如果是这样的话:
1 - How do I make the slider longer to accommodate the tick marks?
2 - How do I properly align these tick marks directly under the slider, each representing each 5units point on the slider?