關於laravel Symfony\Component\HttpKerenl\Exception\Method...錯誤資訊

Junely丶發表於2018-03-03
錯誤資訊:

前端程式碼:

 <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> 

解決方案:

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

能完美解決!


相關文章