路由错误 没有与[开机自检]"/default"匹配的路由



我有一个名为"default"的静态页面,其中包含一个按钮"设置",即下面

<table align="center" width="85%" style="margin-left40px;" >
<tr>
   <td style="color: #212121;">
    <div class="button">
      <%= button_to "Settings", {}, {:class => "buttonhome" } %>
 </div>
   </td>
</tr>
</table>

当我单击"设置"按钮时,它会进入"设置"页面,我在下面设置了路线:

get 'settings', :to => redirect('/settings#new')

但它在下面给出了一个错误:

Routing Error
No route matches [POST] "/default"

那我该怎么办,请帮我等待回复。谢谢。

错误在此行中 <%= button_to "Settings", {}, {:class => "buttonhome" } %>

它应该是:

<%= button_to "Settings", '/settings', {method: :get, :class => "buttonhome"} %>

最新更新