ruby-on-rails – Rails button_to – 将css类应用于按钮

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails button_to – 将css类应用于按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是愚蠢的,但我无法弄清楚如何对由Rails button_to创建的输入元素进行风格化,而且,我已经一遍又一遍阅读了文档,并尝试了这些示例.

这是我的ERB代码

<%= button_to "Claim",action: "claim",idea_id: idea.id,remote: true,class: 'btn btn-small'  %>

这样产生以下HTML:

<form action="/ideas/claim?class=btn+btn-small&amp;idea_id=4&amp;remote=true" class="button_to" method="post">
  <div>
    <input data-remote="true" type="submit" value="Claim">
    <input name="authenticity_token" type="hidden" value="pU3umgqrDx3WbalfNK10c9H5B5N4OzPpohs4bWW8mow=">
  </div>
</form>

而所有我想要的只是输入有class =“btn btn-small”.

帮帮我?谢谢!

解决方法

方法 button_to的签名是
button_to(name = nil,options = nil,html_options = nil,&block)

所以使用{}区分选项和html_options

<%= button_to "Claim",{action: "claim",remote: true},{class: 'btn btn-small'} %>
原文链接:https://www.f2er.com/ruby/273849.html

猜你在找的Ruby相关文章