在laravel中使用sentry实现身份验证并注销时,如果我按下 返回一页' 任何浏览器的按钮都会返回仪表板。如果刷新页面,则会根据需要转到登录页面。但我想在不刷新的情况下阻止访问仪表板。
N.B。注销并以这种方式转到仪表板后,可以防止根据需要更改任何内容。
答案 0 :(得分:1)
调用注销功能时销毁会话。只需在您的控制器中编写您的注销功能,如下所示:
public function getLogout() {
Sentry::logout();
Session::flush(); // Insert this line, it will remove all the session data
return Redirect::to('users/login')->with('message', 'Your are now logged out!');
}
修改强>
首先我只使用了Session:flush(),并且它以某种方式工作了!但是当我再次检查时,我发现它无法正常工作。因此,我们需要在注销时添加更多代码以清除浏览器缓存。
使用过滤器可以解决此问题。 (我还没有找到任何其他解决方案)首先,在filters.php中添加此代码:
Route::filter('no-cache',function($route, $request, $response){
$response->header("Cache-Control","no-cache,no-store, must-revalidate");
$response->header("Pragma", "no-cache"); //HTTP 1.0
$response->header("Expires"," Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
});
然后将此过滤器附加到路由或控制器。我将它附加到控制器的构造函数中,如下所示:
public function __construct() {
$this->beforeFilter('csrf',array('on' => 'post'));
$this->afterFilter("no-cache", ["only"=>"getDashboard"]);
}