Rails link_to与font-awesome和外部URL

时间:2016-02-17 22:48:17

标签: ruby-on-rails font-awesome

我正在尝试使用font-awesome gem链接到rails应用中的youtube页面。

<i><%= link_to fa_icon "youtube-square 2x", @book.youtube %></i>

这样做会收到no implicit conversion of Symbol into String错误消息。

我是否需要删除字体真棒助手并将其作为一个类包含在内,还是有另一种方法可以让它一起工作?

1 个答案:

答案 0 :(得分:10)

Looking at the docs,我相信您需要将fa_icon帮助器放在link_to块中:

<%= link_to @book.youtube do %>
    <%= fa_icon "youtube-square 2x" %>
<% end %>