我有点困惑。
我如何在嵌入式红宝石中制作它?
< a id="example" href="image_tag thing.photo.url" >< img alt="example3" src="image_tag thing.photo.url(:small)" />< /a >
答案 0 :(得分:3)
当你需要链接一组对象时,你可以使用一个块而不是调用link_to name, path, options
,所以你要发送你想要它执行的方法。使用“do”语法:
<%= link_to thing.photo.url, :id=>'example' do
image_tag(thing.photo.url(:small), :alt=>"example3")
end
%>