在 ruby 中组合 link_to 和图标助手
Combine link_to and icon helpers in ruby
我正在使用 "font-awesome-sass" gem 的图标助手。我还使用 link_to 到 link 到使用 prawn 和 prawnto 生成的 PDF。我怎样才能将这两行结合起来,使我的 pdf 字体很棒 link?
<p><%= link_to "PDF", hotel_shell_path(@hotel_shell, :format => 'pdf') %></p>
和
<a><%= icon("file-pdf-o", "", class: "", href: '#') %></a>
提前致谢。如果您需要更多详细信息,请告诉我。
我想你正在寻找这样的东西,一个 link_to
和 do
块:
<%= link_to hotel_shell_path(@hotel_shell, :format => 'pdf') do %>
<%= icon("file-pdf-o", "", class: "", href: '#') %>
<% end %>
我正在使用 "font-awesome-sass" gem 的图标助手。我还使用 link_to 到 link 到使用 prawn 和 prawnto 生成的 PDF。我怎样才能将这两行结合起来,使我的 pdf 字体很棒 link?
<p><%= link_to "PDF", hotel_shell_path(@hotel_shell, :format => 'pdf') %></p>
和
<a><%= icon("file-pdf-o", "", class: "", href: '#') %></a>
提前致谢。如果您需要更多详细信息,请告诉我。
我想你正在寻找这样的东西,一个 link_to
和 do
块:
<%= link_to hotel_shell_path(@hotel_shell, :format => 'pdf') do %>
<%= icon("file-pdf-o", "", class: "", href: '#') %>
<% end %>