Laravel MethodNotAllowedHttpException没有消息

时间:2018-12-18 12:33:22

标签: laravel post routes

发布数据后出现此错误。

路线;

Route::post('/classified/location', 'ClassifiedController@locationPost')->name('location-post');

表格;

<form class="form" method="post" action="/classified/location">
@csrf

enter image description here

2 个答案:

答案 0 :(得分:1)

请检查您的路由文件,以确保没有两次定义相同的路由,在这种情况下,稍后将替换先前的路由,因此请确保路​​由定义是唯一的且唯一。

如果您仍然要命名路线,请使用名称本身作为目标,

<form class="form" method="post" action="{{ route('location-post') }}">

此外,请确保您没有定义两个或多个具有相同名称的路由。

答案 1 :(得分:0)

您的form标签如下:

<form class="form" method="post" action="{{route('location-post')}}">

OR

<form class="form" method="post" action="{{url('/classified/location')}}">