表单action的问题

前提:Route路由已经设定好:

Route::get('/test','TestController@index');

访问另一个路由,展开视图:

Route::get('/login',function(){return view('login');});

在视图中简单的定义一个表单:

<form action="test" method="post">
<input type='hidden' name="_token" value="{csrf_token()}">
用户名:<input type="text" name="user_name"/><br/>
密码:<input type='password' name="password"/><br/>
<button type="submit">登录</button></form>

在上述表单中action的值为test,在进行表单提交的时候报:

MethodNotAllowedHttpException

你的test路由定义的是get请求 login提交的是post请求。。。

openwrtmail
修改的评论也不能少于六个字哦!
cnsnms
修改的评论也不能少于六个字哦!
cnsnms
修改的评论也不能少于六个字哦!