想实现的功能就是显示相册的封面(这里需要判断相册里面是否照片),然后点击封面时进入相册,分开可以这样写:
<%= link_to "浏览照片", user_album_photos_path(current_user, album) %>
<%= image_tag(album.photos.first.image_url(:littlephoto)) if album.photos.count > 0 %>
但是如果嵌套的话,生成如<a href="xxoo"><img src="OOXX"></a>
这样的代码,应该怎么写?试了下面的写法,会出错
<%= link_to image_tag(album.photos.first.image_url(:littlephoto)) if album.photos.count > 0,user_album_photos_path(current_user, album) %>
错误信息:
syntax error, unexpected modifier_if, expecting ')'