但它给了我这个错误: NoMethod-6ren">
gpt4 book ai didi

ruby-on-rails - 如何在 link_to 帮助器中添加 标签?

转载 作者:行者123 更新时间:2023-12-04 07:40:09 24 4
gpt4 key购买 nike

我想复制这个:

<a href="thepledge.html" class="btn btn-inverse btn-mini btn-ten"><i class="icon-pencil"></i>Take The Pledge</a>  

我试过这个:

<%= link_to("Take the pledge", root_path, :class => "btn btn-inverse btn-mini btn-ten")  do %>
<i class="icon-pencil"></i>
<% end %>

但它给了我这个错误:

NoMethodError at /
undefined method `stringify_keys' for "/":String

link_to 调用中。

想法?

最佳答案

根据documentation您需要将(完整的)链接文本放在 block 中,如下所示:

<%= link_to(root_path, :class => "btn btn-inverse btn-mini btn-ten")  do %>
<i class="icon-pencil">Take the pledge</i>
<% end %>

关于ruby-on-rails - 如何在 link_to 帮助器中添加 <i> 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14062632/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com