2016-02-17 75 views
3

我想鏈接到與字體真棒寶石的rails應用程序的YouTube網頁。Rails的link_to與字體真棒和外部網址

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

在這樣做時,我收到no implicit conversion of Symbol into String錯誤消息。

我是否需要刪除font-awesome helper並將其作爲一個類包含,還是有另一種方法可以使它們一起工作?

回答

6

Looking at the docs,我相信,你需要把fa_icon助手在link_to塊:

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

非常好,謝謝。我沒有在文檔中看到這一點。我可以問你在哪裏找到這些信息? – jgrant

+1

@JustinGrant點擊「查看文檔」鏈接,它會爲您打開github上的gem文檔(這裏是鏈接僅供參考 - https://github.com/bokmann/font-awesome-rails#helpers) – Vucko