Verwendung des Authentifizierungsmoduls von Laravel für die Benutzerregistrierung und -anmeldung.
Anmeldung ist aktuell möglich. Es gibt Daten in MySQL.
Aber beim Anmelden ist es fehlgeschlagen. Kehren Sie zur Anmeldeseite zurück.
Bitte sagen Sie mir, wie ich das Problem lösen kann.
Die aktuelle Anmeldung ist nicht erfolgreich, daher ist Auth::user() zum Abrufen der Authentifizierungsbenutzerinformationen NULL
Das Folgende ist mein Code:
Route::group(['middleware' => ['web']], function () {
//认证路由
Route::get('auth/login','Auth\AuthController@getLogin');
Route::post('auth/login','Auth\AuthController@postLogin');
Route::get('auth/logout','Auth\AuthController@getLogout');
//注册路由
Route::get('auth/register','Auth\AuthController@getRegister');
Route::post('auth/register','Auth\AuthController@postRegister');
});
<?php
namespace App\Http\Controllers\Auth;
use App\User;
use Validator;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ThrottlesLogins;
use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
class AuthController extends Controller
{
/*
|--------------------------------------------------------------------------
| Registration & Login Controller
|--------------------------------------------------------------------------
|
| This controller handles the registration of new users, as well as the
| authentication of existing users. By default, this controller uses
| a simple trait to add these behaviors. Why don't you explore it?
|
*/
use AuthenticatesAndRegistersUsers, ThrottlesLogins;
/**
* Where to redirect users after login / registration.
*
* @var string
*/
protected $redirectTo = '/photo';
/**
* Create a new authentication controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware($this->guestMiddleware(), ['except' => 'logout']);
}
/**
* Get a validator for an incoming registration request.
*
* @param array $data
* @return \Illuminate\Contracts\Validation\Validator
*/
protected function validator(array $data)
{
return Validator::make($data, [
'name' => 'required|max:255',
'email' => 'required|email|max:255|unique:users',
'password' => 'required|min:6|confirmed',
]);
}
/**
* Create a new user instance after a valid registration.
*
* @param array $data
* @return User
*/
protected function create(array $data)
{
return User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => bcrypt($data['password']),
]);
}
}
Registrierungsseite
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
{{Form::open([
'url'=>'/auth/register',
'method'=>'POST'
])}}
{!! csrf_field() !!}
<p>
Name
<input type="text" name="name" value="{{ old('name') }}">
</p>
<p>
Email
<input type="email" name="email" value="{{ old('email') }}">
</p>
<p>
Password
<input type="password" name="password">
</p>
<p>
Confirm Password
<input type="password" name="password_confirmation">
</p>
<p>
<button type="submit">Register</button>
</p>
{{ Form::close() }}
</body>
</html>
Anmeldeseite
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
{{ Form::open([
'url'=>'/auth/login',
'method'=>'POST'
]) }}
{{ csrf_field() }}
<p>
Email:
<input type="email" name="name" value="{{ old('email') }}">
</p>
<p>
Password:
<input type="password" name="password" id="password"/>
</p>
<p>
<input type="checkbox" name="remember">Remember Me
</p>
<p>
<button type="submit">Login</button>
</p>
{{Form::close()}}
</body>
</html>
链接描述
你看看我这篇文章: