Laravel:The Post Method Is Not Supported For This Route.错误的解决办法

admin 阅读:78 2024-03-02

Laravel提示 The Post method is not supported for this route. 错误,是因为配置路由的时候不支持post方式。

比如下面的路由,如果使用post方式访问就会报上面的错误。

Route::get('index', 'IndexController@index);

解决方式就是根据实际需求修改路由配置或者请求方式,简单粗暴的方法是将路由修改为any。

Route::any('index', 'IndexController@index);
声明

1、部分文章来源于网络,仅作为参考。
2、如果网站中图片和文字侵犯了您的版权,请联系1943759704@qq.com处理!

搜索