laravel Symfony\Component\HttpKerenl\Exception\Method...

awake720發表於2018-12-28

laravel Symfony\Component\HttpKerenl\Exception\Method...

1、錯誤資訊

Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException No message

前端程式碼:

post表單提交:

 <form action="" method="post">
    <input type="hidden" name="_token" value="{{csrf_token()}}"/>
    <input type="text" name="name"/>
    <input type="password" name="password"/>
    <input type="submit" value="提交"/>
</form> 
後端路由web.php

Route::namespace('test')->group(function (){
    Route::get('/', 'testroller@index');
});

解決:因為顯示時,如果路由傳值方式為get,而我們的提交資料時為post會有錯誤報告,所以應該將get->post,就post可以了;

出現同一個報錯情況:

1、表單提交沒有寫   <input type="hidden" name="_token" value="{{csrf_token()}}"/>也會報錯!

相關文章