設定重定向的方法:1、利用「Route::get()」和redirect()重定向URL;2、利用「redirect()->back()」重定向回上一頁;3、重定向到命名路由;4、重定向到控制器或帶有參數的控制器;5、使用會話資料重定向等。
本教學操作環境:windows7系統、Laravel5版、Dell G3電腦。
Laravel 重定向的幾種方法
#1、重定向URL
路由:
Route::get('itsolutionstuff/tags', 'HomeController@tags');
控制器:
public function home() { return redirect('itsolutionstuff/tags'); }
2、重定向回上一頁
public function home() { return back(); } //或者 public function home2() { return redirect()->back(); }
##3、重定向到命名路由
路由:Route::get('itsolutionstuff/tags', array('as'=> 'itsolutionstuff.tags', 'uses' => 'HomeController@tags'));
public function home() { return redirect()->route('itsolutionstuff.tags'); }
#使用參數重定向到命名路由##路由:
Route::get('itsolutionstuff/tag/{id}', array('as'=> 'itsolutionstuff.tag', 'uses' => 'HomeController@tags'));
控制器:
public function home() { return redirect()->route('itsolutionstuff.tag',['id'=>17]); }
public function home()
{
return redirect()->action('HomeController@home');
}
public function home()
{
return redirect()->action('App\Http\Controllers\HomeController@home',['id'=>17]);
}
我們也可以在控制器方法中用路由或url重定向時傳遞閃過的會話訊息,如下所示。
public function home() { return redirect('home')->with('message', 'Welcome to PHP.cn!'); }
最新的五個Laravel影片教學
以上是laravel設定重定向的方法有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!