我在werkzeug /烧瓶响应中使用path
方法在Cookie上设置set_cookie()
时遇到问题。 documentation很简单。
# This, sets cookie with default path='/'
response.set_cookie('access_token', 'my_token', domain='example.com')
但是,当我设置的path
参数不同于根('/')时,则没有设置cookie。
# This, doesn't set cookie
response.set_cookie('access_token', 'my_token', domain='example.com', path='/api')
有什么想法为什么无法为路径不同于root的cookie创建cookie,以及如何解决它?