aiohttp - 设置cookie然后重定向用户

时间:2017-02-15 05:36:03

标签: python aiohttp

我正在使用python aiohttp库编写Web服务器。

如何设置Cookie,然后在一个响应中将用户重定向到另一个页面?

可以使用aiohttp.web.HTTPSeeOther重定向用户,但我找不到将Cookie附加到其中的方法。

1 个答案:

答案 0 :(得分:3)

只需设置响应的Cookie值即可。

import aiohttp
response = aiohttp.web.HTTPSeeOther(<location>)
response.cookies['test'] = '1'
return response