我正在尝试使用font-awesome gem链接到rails应用中的youtube页面。
<i><%= link_to fa_icon "youtube-square 2x", @book.youtube %></i>
这样做会收到no implicit conversion of Symbol into String
错误消息。
我是否需要删除字体真棒助手并将其作为一个类包含在内,还是有另一种方法可以让它一起工作?
答案 0 :(得分:10)
Looking at the docs,我相信您需要将fa_icon
帮助器放在link_to
块中:
<%= link_to @book.youtube do %>
<%= fa_icon "youtube-square 2x" %>
<% end %>