-->

send redirect and setting cookie, using laravel 5

2020-08-27 05:32发布

问题:

I have written this code, that sets a cookie in client's browser, and after that must redirect the client to 'home' route,

$response = new Response();
$response->withCookie(cookie()->forever('language', $language));
$response->header('Location' , url('/home')) ;
return $response ;

the client receives these headers but the client doesn't make request for the "home" route

how should I do both, setting the cookie and redirect the user?

回答1:

Why don't you do return Redirect::to('home');

Of course you can use chaining to do more things, both in L4 and L5.

L4: return Redirect::to('home')->withCookie($cookie);

L5: return redirect('home')->withCookie($cookie);