Rails 3 - link_to with image_tag + text

时间:2011-09-14 10:31:26

标签: ruby-on-rails-3 image link-to

<%= link_to ((image_tag 'image.png'), 
        url_for({:controller => 'controller_name', :action => 'action_name'}), 
            :class => 'quick', 
            :remote => true) %>

这部分代码会生成 image.png 作为链接。我需要这个图像附加一些文本(图像+文本),我尝试了类似的东西:

<%= link_to ((image_tag 'image.png', 'text'), 
        url_for({:controller => 'controller_name', :action => 'action_name'}), 
            :class => 'quick', 
            :remote => true) %>

以类似的方式,但这些尝试中的每一个都以错误的语法错误消息结束......任何人都可以帮助我,请问我应该如何设置它?

提前致谢。

4 个答案:

答案 0 :(得分:44)

试试这个。

<%= link_to image_tag('/images/image.png') + "some extra text", url_for({:controller => 'controller_name', :action => 'action_name'}), :class => 'quick', :remote => true %>

答案 1 :(得分:9)

一个稍微性感的解决方案?

<%= link_to image_tag("image.png", :alt => "Image Description", :class => "css"), root_path %>

答案 2 :(得分:1)

试试这个:

<%= link_to (image_tag('image.png') + text, 
        url_for({:controller => 'controller_name', :action => 'action_name'}), 
            :class => 'quick', 
            :remote => true) %>

第一个参数是文本部分,使用image_tag创建HTML,但您可以轻松附加内容。

答案 3 :(得分:0)

我使用了以下内容,它的工作正常:

<%= link_to image_tag("logo.jpg"), controller: 'welcome' %>