html输出: Follow all 如果可能的话,我如何像链接一样使用此按钮,例如: "btn btn-prima-6ren">
gpt4 book ai didi

ruby-on-rails - button_tag 像 link_to rails 3

转载 作者:行者123 更新时间:2023-12-04 06:03:46 31 4
gpt4 key购买 nike

我需要使用此代码:

<%= button_tag :class => "btn btn-primary" do %>
<%= t('.follow_all')%>
<% end %>

html输出:
<button class="btn btn-primary" name="button" type="submit">
Follow all
</button>

如果可能的话, 我如何像链接一样使用此按钮,例如:
<%= button_tag new_user_registration_path, :class => "btn btn-primary" do %>
<%= t('.follow_all')%>
<% end %>

我需要使用 button_tag helper 。我无法使用 link_to helper ,或者,如果可能的话, 如何在不使用表单的情况下从按钮发送参数?

最佳答案

那这个呢:

<%= button_tag(:type => 'button') do %>
<% link_to t('.follow_all'), new_user_registration_path %>
<% end %>

关于ruby-on-rails - button_tag 像 link_to rails 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11178992/

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