laravel errorMethodNotAllowedHttpException No message
Posted niuben
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel errorMethodNotAllowedHttpException No message相关的知识,希望对你有一定的参考价值。
Symfony \\ Component \\ HttpKernel \\ Exception \\ MethodNotAllowedHttpException
No message
报错原因【原理】CSRF防护:
在 web 路由文件中所有请求方式为PUT、POST或DELETE的html表单都会包含一个CSRF令牌字段,否则,请求会被拒绝
解决办法:
在html表单提交中加入:
{{csrf_field()}}
或者
<input type="hidden" name="_token" value="{{csrf_token()}}"/>
对了,请记得检查web.php入口路由中的方法是否是post
Route::match([‘get‘,‘post‘],‘notice/add‘,‘Admin\\[email protected]‘);
以上是关于laravel errorMethodNotAllowedHttpException No message的主要内容,如果未能解决你的问题,请参考以下文章