溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Laravel中間件實(shí)現(xiàn)用戶認(rèn)證

發(fā)布時(shí)間:2024-11-10 05:15:37 來源:億速云 閱讀:78 作者:小樊 欄目:編程語言

在 Laravel 中,實(shí)現(xiàn)用戶認(rèn)證通常涉及到以下幾個(gè)步驟:

  1. 創(chuàng)建一個(gè)認(rèn)證中間件(Auth Middleware)
  2. 在路由中使用認(rèn)證中間件
  3. 在控制器中使用認(rèn)證中間件
  4. 實(shí)現(xiàn)登錄和注冊功能

下面是詳細(xì)的實(shí)現(xiàn)過程:

1. 創(chuàng)建一個(gè)認(rèn)證中間件

首先,使用 make:middleware Artisan 命令創(chuàng)建一個(gè)名為 Authenticate 的中間件:

php artisan make:middleware Authenticate

這將在 app/Http/Middleware 目錄下生成一個(gè) Authenticate.php 文件。

2. 在路由中使用認(rèn)證中間件

接下來,在 routes/web.php 文件中,將需要認(rèn)證的路由放在 auth 中間件組中:

Route::middleware(['auth'])->group(function () {
    Route::get('/dashboard', [DashboardController::class, 'index']);
    // 其他需要認(rèn)證的路由
});

3. 在控制器中使用認(rèn)證中間件

在需要認(rèn)證的控制器中,使用 auth 中間件:

use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Http\Request;

class DashboardController extends Controller
{
    use AuthorizesRequests, DispatchesJobs, ValidatesRequests;

    public function __construct()
    {
        $this->middleware('auth');
    }

    public function index()
    {
        return view('dashboard');
    }
}

4. 實(shí)現(xiàn)登錄和注冊功能

登錄功能

app/Http/Controllers/Auth 目錄下創(chuàng)建一個(gè)名為 LoginController.php 的控制器:

use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\AuthenticatesUsers;
use Illuminate\Http\Request;

class LoginController extends Controller
{
    use AuthenticatesUsers;

    protected $redirectTo = '/dashboard';

    public function __construct()
    {
        $this->middleware('guest')->except('logout');
    }

    public function username()
    {
        return 'email';
    }

    protected function guard()
    {
        return Auth::guard();
    }
}

resources/views/auth 目錄下創(chuàng)建 login.blade.phpregister.blade.php 視圖文件。

routes/web.php 文件中添加登錄和注冊路由:

Route::get('/login', [LoginController::class, 'showLoginForm']);
Route::post('/login', [LoginController::class, 'login']);
Route::get('/register', [RegisterController::class, 'showRegistrationForm']);
Route::post('/register', [RegisterController::class, 'register']);
Route::post('/logout', [LoginController::class, 'logout']);

注冊功能

app/Http/Controllers/Auth 目錄下創(chuàng)建一個(gè)名為 RegisterController.php 的控制器:

use App\Models\User;
use Illuminate\Foundation\Auth\RegistersUsers;
use Illuminate\Http\Request;

class RegisterController extends Controller
{
    use RegistersUsers;

    protected $redirectTo = '/login';

    public function __construct()
    {
        $this->middleware('guest');
    }

    protected function model(array $data)
    {
        return User::create([
            'name' => $data['name'],
            'email' => $data['email'],
            'password' => bcrypt($data['password']),
        ]);
    }
}

resources/views/auth 目錄下創(chuàng)建 register.blade.php 視圖文件。

現(xiàn)在,你已經(jīng)實(shí)現(xiàn)了基本的用戶認(rèn)證功能。用戶可以通過注冊和登錄來訪問受保護(hù)的路由。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI