1

我正在为 Rails 表单使用一个纤薄的模板文件。我想使用 Foundation 图标字体作为链接中的图形,但似乎找不到将字体包含在 link_to 中的方法。这是有问题的代码。

h3 Categories

table
  tr
    th <span class="secondary radius label">Category Name</span>
    th colspan="2" <span class="secondary radius label">Actions</span> 
  - for category in @categories do
    tr 
      td #{category.name}
      td #{link_to 'Edit', edit_category_path(category)} <i class="general foundicon-edit">

在最后一行中,我可以让图标显示在链接旁边(如图所示),但我看不到如何将其嵌入链接标题本身(当前设置为“编辑”)。

非常感谢任何帮助!

仅供参考::Rails 3.2.11,Ruby 1.9.3,Foundation 3

4

1 回答 1

0

未经测试,但这应该让你接近:

td
  = link_to edit_category_path(category) do
      Edit <i class="general foundicon-edit"></i>

这也可能有效:

td #{link_to 'Edit <i class="general foundicon-edit"></i>'.html_safe, edit_category_path(category)}
于 2013-02-08T23:04:58.203 回答