On Tuesday, August 21, 2018 at 12:37:16 PM UTC-4, Carlos Correia wrote:
>
> Hi,
>
>
> Is it possible to set a cookie and redirect to another page in the same 
> controller?
>
> If yes, how? I tried this simple example but the cookie is lost if I use 
> the redirect...
>
> def cookies2():
>     cookie_name = 'name'    cookie_value = 'value'    response.cookies[ 
> cookie_name ] = cookie_value
>     response.cookies[ cookie_name ][ 'expires' ] = 24 * 3600    
> response.cookies[ cookie_name ][ 'path' ] = '/'    response.cookies[ 
> cookie_name ][ 'secure' ] = True    redirect( URL( c='test', 
> f='cookie_result' ) )
>
>
Instead of using redirect, you can use HTTP() directly:

raise HTTP(303, cookies=response.cookies, Location=URL('test', 
'cookie_result'))

redirect() is simply a shortcut for the above (minus the cookies).

Anthony

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to