我使用 Python Nameko 作为我的微服务框架,当我尝试在我的 get 请求中设置 cookie 时,我似乎做不到,下面是我的代码:
from http import cookies
from nameko.web.handlers import http
@http('GET', '/hello')
def say_hello(self, request):
c = cookies.SimpleCookie()
c['test-cookie'] = 'test-1'
return 200, c, 'Hello World!'
当我使用 Postman 调用获取请求时,以下是我从请求中返回的内容:
任何人都可以帮助理解这种行为吗?如图所示,它不是 Set-Cookie ->,而是 ->。谢谢你。