Laravel 8 重定向并使用閃存的 Session 數(shù)據(jù)

2021-07-17 15:59 更新

重定向到新的 URL 的同時 傳送數(shù)據(jù)給 session 是很常見的。 通常會在成功執(zhí)行一個動作并傳送消息給 session 之后這樣做。為了方便起見,你可以創(chuàng)建一個 RedirectResponse 實例并在鏈?zhǔn)椒椒ㄕ{(diào)用中將數(shù)據(jù)傳送給 session :

Route::post('user/profile', function () {
    // 更新用戶的信息...

    return redirect('dashboard')->with('status', 'Profile updated!');
});

在用戶重定向后,可以顯示 session 中的傳送數(shù)據(jù)。比如使用 Blade syntax

@if (session('status'))
    <div class="alert alert-success">
        {{ session('status') }}
    </div>
@endif


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號