关于Auth验证后跳转的问题
怎么能使用Auth验证成功后跳转到请求的页面呢?
使用redirect()->back()好象不对。
于是读代码,其中AuthenticatesAndRegistersUsers中下面的一段
public function redirectPath()
{
if (property_exists($this, 'redirectPath'))
{
return $this->redirectPath;
}
return property_exists($this, 'redirectTo') ? $this->redirectTo : '/home';
}
意思是如果该类设置了redirectPath,就可直接跳转。但我不知在laravel中如何将请求的页面地址传递过去。
使用redirect()->back()好象不对。
于是读代码,其中AuthenticatesAndRegistersUsers中下面的一段
public function redirectPath()
{
if (property_exists($this, 'redirectPath'))
{
return $this->redirectPath;
}
return property_exists($this, 'redirectTo') ? $this->redirectTo : '/home';
}
意思是如果该类设置了redirectPath,就可直接跳转。但我不知在laravel中如何将请求的页面地址传递过去。
0 个回复