Python Pylons/Pyramid 饼干
Python Pylons/Pyramid Cookies
在 pylons/pyramid 中设置和获取 cookie 的最佳方式是什么?
Response.set_cookie('example_cookie_name', 'example', max_age=180*24*3600)
returns错误
File "/usr/local/lib/python3.5/dist-packages/webob/response.py", line 1071, in set_cookie
self.headerlist.append(('Set-Cookie', cookie))
AttributeError: 'str' object has no attribute 'headerlist'
你好像在做这样的事情:
from pyramid.response import Response
Response.set_cookie('example_cookie_name', 'example', max_age=180*24*3600)
问题是 Response
是一个 class 并且您正在调用它的未绑定方法 set_cookie
传递一个字符串来代替 self
参数。
(有趣的事实 - 在 Python 2 中,错误是 much clearer)
您需要实例化一个新的响应对象或简单地使用 request.response
属性。
在 pylons/pyramid 中设置和获取 cookie 的最佳方式是什么?
Response.set_cookie('example_cookie_name', 'example', max_age=180*24*3600)
returns错误
File "/usr/local/lib/python3.5/dist-packages/webob/response.py", line 1071, in set_cookie
self.headerlist.append(('Set-Cookie', cookie))
AttributeError: 'str' object has no attribute 'headerlist'
你好像在做这样的事情:
from pyramid.response import Response
Response.set_cookie('example_cookie_name', 'example', max_age=180*24*3600)
问题是 Response
是一个 class 并且您正在调用它的未绑定方法 set_cookie
传递一个字符串来代替 self
参数。
(有趣的事实 - 在 Python 2 中,错误是 much clearer)
您需要实例化一个新的响应对象或简单地使用 request.response
属性。