如何使用按钮创建一个link_to到form_for中的操作?

时间:2017-11-22 20:03:56

标签: ruby-on-rails forms link-to

我有一个名为users的资源。在编辑操作中,我有一个form_for来编辑用户的信息。我想在表单中放置一个按钮以重定向到另一个操作。所以我这样做:

<%= form_for @user, html: {class: 'form-horizontal'} do |f| %>
<div class="row">
  <div class="col-sm-8 col-sm-offset-2">

    <div class="form-group">
      <%= f.label :name, "Name", class: "col-sm-4 control-label"%>
      <div class="col-sm-8">
        <%= f.text_field :name, required: "required", class: "form-control" %>
      </div>
    </div>

    <div class="form-group">
      <%= f.label :email, "Email", class: "col-sm-4 control-label"%>
      <div class="col-sm-8">
        <%= f.email_field :email, required: "required", class: "form-control" %>
      </div>
    </div>

    <div class="form-group">
      <%= link_to root_path do %>
        <button class="btn btn-default" name="button">Go to Root</button>
      <% end %>
    </div>

    <%= f.submit "Save", class: "btn btn-default" %>

  </div>
</div>
<% end %>

问题在于,当我单击“转到根”按钮时,它会在更新操作中处理表单,就像我按下了提交按钮一样。但如果我改变

<div class="form-group">
      <%= link_to root_path do %>
        <button class="btn btn-default" name="button">Go to Root</button>
      <% end %>
    </div>

<div class="form-group">
      <%= link_to root_path do %>
        Go to Root
      <% end %>
    </div>

转到te root_path。为什么会发生这种情况?为什么我不能使用a来创建指向此表单中其他操作的链接?

1 个答案:

答案 0 :(得分:1)

默认情况下,表单按钮会提交类型。您需要指定按钮类型。

尝试以下方法:

<button type="button" class="btn btn-default" name="button">Go to Root</button>