Rails在content_tag中显示glyphons

时间:2015-07-19 11:36:44

标签: ruby-on-rails

我一直在努力从帮助者输出html直到我阅读以下内容: http://thepugautomatic.com/2013/06/helpers/

本文介绍如何在content_tags中输出链接,例如:

content_tag(:p, class: "widget") do
  concat link_to("Hello", hello_path)

我想在帮助程序中使用glyphon创建一个链接但是使用上面的代码无法让它工作:

content_tag(:i, class: "fa fa-thumbs-up") do
  link_to hello_path

上面的代码只显示大括号内的类:

{:class=>"fa fa-thumbs-up"}

1 个答案:

答案 0 :(得分:0)

你可以试试这个

link_to hello_path do 
  content_tag(:i, '', class: "fa fa-thumbs-up")
end