2015-04-16 42 views
1

我試圖在Rails鏈接中包含自舉圖形。我想:在Rails鏈接中包含自舉圖形

<%= link_to "<i class="glyphicon glyphicon-check"></i>&nbsp; Sign up".html_safe, signup_path, :class => "button" %> 

但顯然我包括glyphicon的方式不正確,因爲這在服務器上產生錯誤:當我刪除了部分鏈接的作品

unexpected tIDENTIFIER, expecting ')' ...=(link_to "<i class="glyphicon glyphicon-check"></i>" + .... 

。我怎樣才能在鏈接/按鈕中包含圖形?

回答

2

我會怎麼做:

<%= link_to signup_path, class: "button" do %> 
    <i class="glyphicon glyphicon-check"></i>&nbsp; Sign up 
<% end %> 

我覺得它更清晰。

0

解決方案:

<%= link_to "<i class='glyphicon glyphicon-check'></i>&nbsp; Sign up".html_safe, signup_path, :class => "button" %> 

所以使用 'glyphicon glyphicon檢查',而不是 「glyphicon glyphicon檢查」。

0

嘗試這個......例如與link _to.my回答here

<%= link_to (‘<i class=「fa fa-thumbs-up fa-lg」> </i>’).html_safe, vote_path(@image), :method=> :delete, :remote=> true%>