表单标签中的button_to

时间:2017-06-28 03:35:23

标签: html ruby-on-rails

我正在开发一个网站,我遇到了这个问题。

如果点击按钮,我想浏览另一个页面。

在localhost:3000 / articles /浏览页面

<form class="navbar-form navbar-left" >
  <%= link_to comments_path %>
</form>

这适用于浏览评论页面,但

<form class="navbar-form navbar-left">
  <%= button_to comments_path %>
</form>

这不会指向comments_path。

为什么会发生这种情况?

我已经解决了我的自我。

<form class="navbar-form navbar-left" action=<%= comments_path %>>
  <button name="abc">
</form>
  

结果是button_to   不应该在form标签中使用!!

有没有人可以回答为什么会这样?

1 个答案:

答案 0 :(得分:2)

试试这个:

<%= button_to "Comments", comments_path%>

关于你的第二个问题,正如this的@Clonex副本所说。