web-dev-qa-db-ja.com

Laravel 5 RouteCollection.php行201のMethodNotAllowedHttpException:

私のプロジェクトにはいくつかのphpファイルがあります。

admin.blade.php:このファイルには管理フォームが含まれています。

呼び出されると、次のエラーが表示されます。

RouteCollection.php行201のMethodNotAllowedHttpException

<h2>Please Log In To Manage</h2>
<form id="form1" name="form1" method="post" action="<?=URL::to('/admin')?>">
   <input type="hidden" name="_token" value="{{ csrf_token() }}">
   User Name:<br />
   <input name="username" type="text" id="username" size="40" />
   <br /><br />
   Password:<br />
   <input name="password" type="password" id="password" size="40" />
   <br />
   <br />
   <br />
   <input type="submit" name="button" id="button" value="Log In" />
</form>

route.phpでは、次の呼び出しが行われます。

Route::get('/admin',array('uses'=>'student@admin'));

これはstudent.phpの関数です

public function admin()
{
    return View::make('student.admin');
    $validator = Validator::make($data = Input::all() , User::rules());
    if ($validator->fails())
    {
        return Redirect::back()->withErrors($validator)->withInput();
    }
    else
    {
        $check = 0;
        $check = DB::table('admin')->get();
        $username = Input::get('username');
        $password = Input::get('password');
        if (Auth::attempt(['username' => $username, 'password' => $password]))
        {
            return Redirect::intended('/');
        }
        return Redirect::back()->withInput()->withErrors('That username/password combo does not exist.');
    }
}

管理領域の作成についてあまり知りません。ただ作成しようとしています。

10
deep singh

これが私のやり方です。

Routes.php

Route::get('/admin', 'UsersController@getAdminLogin');
Route::get('/admin/dashboard', 'UsersController@dashboard');
Route::post('/admin', 'UsersController@postAdminLogin');

admin_login.blade.php

{!! Form::open(['url' => '/admin']) !!}
    <div class="form-group">
        {!! Form::label('email', 'Email Id:') !!}
        {!! Form::text('email', null, ['class' => 'form-control input-sm']) !!}
    </div>
    <div class="form-group">
        {!! Form::label('password', 'Password') !!}
        {!! Form::password('password', ['class' => 'form-control input-sm']) !!}
    </div>
    <div class="form-group">
        {!! Form::submit('Login', ['class' => 'btn btn-primary btn-block']) !!}
    </div>
{!! Form::close() !!}

dashboard.blade.php

<h4 class="text-center">
    Welcome {{ Auth::user()->full_name }}
</h4>

UsersController.php

/**
 * Display the admin login form if not logged in,
 * else redirect him/her to the admin dashboard.
 *
 */
public function getAdminLogin()
{
    if(Auth::check() && Auth::user()->role === 'admin')
    {
        return redirect('/admin/dashboard');
    }
    return view('admin_login');
}

/**
 * Process the login form submitted, check for the
 * admin credentials in the users table. If match found,
 * redirect him/her to the admin dashboard, else, display
 * the error message.
 *
 */
public function postAdminLogin(Request $request)
{
    $this->validate($request, [
        'email'    => 'required|email|exists:users,email,role,admin',
        'password' => 'required'
    ]);

    $credentials = $request->only( 'email', 'password' );

    if(Auth::attempt($credentials))
    {
        return redirect('/admin/dashboard');
    }
    else
    {
        // Your logic of invalid credentials.
        return 'Invalid Credentials';
    }
}

/**
 * Display the dashboard to the admin if logged in, else,
 * redirect him/her to the admin login form.
 *
 */
public function dashboard()
{
    if(Auth::check() && Auth::user()->role === 'admin')
    {
        return view('admin.dashboard');
    }
    return redirect('/admin');
}

あなたのコード:

routes.php、ルートは1つだけです。つまり、

Route::get('/admin',array('uses'=>'student@admin'));

そして、postメソッドの宣言はありません。したがって、MethodNotAllowedHttpException

また、コントローラーでは、最初にビューを返し、次にまったく機能しないフォームを処理します。最初にフォームを処理してから、ビューを返す必要があります。

public function admin(){
    // Won't work as you are already returning the view
    // before processing the admin form.
    return \View::make(students.admin);
    // ...
}

@Sulthanが示唆したように、Form Facadeこのビデオ on Laracasts についてForm Facadeは、その使用方法です。

7
Saiyan Prince

フォームでpostメソッドを使用していますが、ルートでgetメソッドを使用しています。

そのため、ルートでメソッドをpostに変更します

注:

Laravelのデフォルトのフォームオープニングを使用することをお勧めします

{!! Form::open(array('url' => 'foo/bar')) !!}

{!! Form::close() !!}

ヒント:

こちらで詳細をご覧ください そして、メソッドとルートを比較することでそのようなことをデバッグしようとします。

フォームファサードは、デフォルトではlaravel 5に含まれていません。

composer require "illuminate/html":"5.0.*"

app.phpで更新します。

私は blog を書きました。これはこのインストールについて簡潔に説明しています。

5

ルート内web.phpあなたのコードは

Route::get('/admin',array('uses'=>'student@admin')); 

それは間違っています。実際にPOSTメソッドでデータを送信すると、getではなくpostを経由する必要があるため、正しいコードは

Route::post('/admin',array('uses'=>'student@admin'));

Laracastのこのチュートリアルに従ってください。
https://laracasts.com/series/laravel-from-scratch-2017/episodes/16

2
Vrushal Raut

routes.php、置換Route::get by Route::post

1
daidongsheng

フォームデータの投稿に投稿ルートがありません。http動詞(get&post)の両方にルート一致機能を使用します。これを使って

Route :: match(['get'、 'post']、 '/ admin'、 'student @ admin');

また、管理方法を変更する必要があります。

public function admin(Request $request){
    if($request->isMethod('get')){
        return \View::make('student.admin');
    } else {
    // your validation logic
    }
}
0
Nehal Hasnayeen