Add an anchor to Laravel redirect back

2020-08-09 08:21发布

问题:

In a Laravel controller I have this redirect:

    return redirect()->back();

Which returns me to my previous page (say http://domain/page). However, I want to make the page jump to a particular anchor (say #section). So ultimately this page should be opened: http://domain/page#section. How can I make this happen? I tried appending the anchor to the redirect but that doesn't work.

回答1:

return Redirect::to(URL::previous() . "#whatever");

And remember to import it at the top:

use Illuminate\Support\Facades\Redirect;
use Illuminate\Support\Facades\URL;

I hope this works for you!



回答2:

You can use these helpers for laravel 5.5 and above - no imports :-)

return redirect()->to(url()->previous() . '#hash');