无法理解为什么错误是MethodNotAllowedHttpException

时间:2017-02-03 10:56:42

标签: php laravel laravel-4

我试图在Laravel 4.2 + Sentry中创建登录表单。问题是,当我提交表单时,我收到错误,不允许使用该方法。

当我在源代码中检查我的表单时,它有method="POST",并且在路由中我写了post。可能是什么问题?

  

MethodNotAllowedHttpException

但不明白为什么?这是表格

        {{ Form::open(array('route' => 'check-auth')) }}
            <div class="body bg-gray">
                {{-- Display flash message --}}
                @if (Session::has('flash_message'))
                    <span style="margin-left:18%; color: #ff0000">{{ Session::get('flash_message') }}</span>
                @endif

                <div class="form-group">
                    <input type="text" name="email" class="form-control" placeholder="User email"/>
                    @if($errors->has('login_errors')) <span class="has-error">{{ $errors->first('email') }}</span> @endif
                </div>
                <div class="form-group">
                    <input type="password" name="password" class="form-control" placeholder="User password"/>
                </div>
            <button type="submit" name="submitbtn" class="btn bg-olive btn-block">Sign me in</button>  
            </div>
        {{ Form::close() }}

路线

Route::post('user-login', ['as'=>'check-auth', 'uses'=>'AuthenticationController@login']);

和控制器

public function login()
{
    try{
        $credentials = array(
            'email'     => Input::get('email'),
            'password'  => Input::get('password')

        );

        $user = Sentry::authenticate($credentials, false);
        if($user){
            return Redirect::to('dashboard');
        }

        return Redirect::to('/')->with('title','Login errors');
    }
    catch(Exception $e){
        echo $e->getMessage();
        Session::flash('flash_message', 'No access!');
        return Redirect::to('/')->with('title','Login errors');
    }
}

更新:错误

production.ERROR: Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException in /var/www/html/time/vendor/laravel/framework/src/Illuminate/Routing/RouteCollection.php:210

3 个答案:

答案 0 :(得分:1)

{{Form :: open(array(&#39; route&#39; =&gt;&#39; check-auth&#39;)}}}

请参阅,您正在使用路由检查身份验证,并在路由文件中定义了不同的路由,即用户登录

Route::post('user-login', ['as'=>'check-auth', 'uses'=>'AuthenticationController@login']);

正确的路线,然后再试一次,这将有效

答案 1 :(得分:1)

而不是使用后期获取(它仍然可以发布内容,但您也可以检索)

答案 2 :(得分:1)

你的路线是正确的,我唯一可以建议的是将类型附加到表格的开头:
{{ Form::open(['url' => 'check-auth', 'method' => 'post']) }}