我正在开发一个网站,我遇到了这个问题。
如果点击按钮,我想浏览另一个页面。
在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
标签中使用!!
有没有人可以回答为什么会这样?