Laravel - 重定向到页面,滚动到页面底部(Laravel - redirect to pa

2019-10-21 09:52发布

IM使用Laravel框架,并在我的控制器我有

return Redirect::route('home'); 

这是重定向到主页。 不过,我想完成进行滚动下来看看页脚时,重定向的页面。 类似href="home#footer"有没有一个办法?

Answer 1:

您可以生成的URL路径然后附加散列和重定向到URL

$url = URL::route('home') . '#footer';
return Redirect::to($url);


文章来源: Laravel - redirect to page and scroll to the bottom of the page