CSRF出来问题,表单用ajax提交以后报错

在laravel5.5中我表单提交时,出现Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException
No message报错,路由中要提交的地址的代码是 Route::post('accesmsg','Admin\AccountController@accesmsg');,VerifyCsrfToken.php中的代码是 protected $except = [ 'accesmsg'];,在Kernel.php中的 \App\Http\Middleware\VerifyCsrfToken::class,我已经去掉了,但是为什么最后还是会出现Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException