我是 ruby 新手,我正在尝试使用 rails 3.2.15 在链接中插入一个很棒的字体图标
这是我的代码
<%= link_to tweet_path(tweet), method => :delete, :confirm => 'Are you sure?' do %>
<i class="icon-trash"></i>
<% end %>
<%= link_to edit_tweet_path(tweet) do %>
<i class="icon-pencil"></i>
<% end %>
我不知道我做错了什么。
先感谢您。