如何在haml的rails link_to helper左侧添加字体真棒图标?

时间:2015-03-31 05:25:01

标签: ruby-on-rails haml font-awesome

= link_to "PREVIOUS", display_featured_path(:current_featured_statement_id => statement.id, :direction => "previous"), :remote => true, :class=> ""

这是我的代码,但我想添加一个箭头指向左边的' Previous'链接。我已经玩了一段时间,但没有找到可靠的解决方案。

任何帮助,非常感谢。

我尝试过Ronaks解决方案,但我收到语法错误。

1 个答案:

答案 0 :(得分:1)

尝试

= link_to display_featured_path(:current_featured_statement_id => statement.id, :direction => "previous"), :remote => true do 
  i.fa.fa-calculator
    'Previous'