Laravel 8 重定向

2021-07-17 15:58 更新

重定向响应是 Illuminate\Http\RedirectResponse 类的实例,并且包含用户需要重定向至另一个 URL 所需的头信息。Laravel 提供了几种方法用于生成 RedirectResponse 实例。其中最简单的方法是使用全局辅助函数 redirect

Route::get('dashboard', function () {
    return redirect('home/dashboard');
}); 

有时候你可能希望将用户重定向到之前的位置,比如提交的表单无效时。这时你可以使用全局辅助函数 back 来执行此操作。由于这个功能利用了 session,请确保调用 back 函数的路由使用 web 中间件组或所有 Session 中间件:

Route::post('user/profile', function () {
    // Validate the request...

    return back()->withInput();
}); 
Route::post('user/profile', function () {
    // Validate the request...

    return back()->withInput();
}); 
    


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号