0

我正在使用 Rails 4.2.7。我想在我的表单上添加一个“取消”按钮,它只会将用户引导到应用程序的另一部分。所以我实施

<%= button_to "Cancel", {:controller => :my_objects, :action => 'index' }, :class => 'btn' %>

但这呈现为提交按钮,并且在单击此按钮时出现的表单会被提交,这不是我想要的。如何更改上述内容,以便将按钮呈现为将用户引导至其他地方的按钮(无需提交表单)?

4

1 回答 1

0

你应该使用 alink_to代替。

<%= link_to "Cancel", { controller: "my_objects", action: "index", class: "btn" } %>

于 2016-08-01T21:36:09.177 回答