'WSGIRequest'对象没有属性'cookies'

时间:2016-02-10 14:49:29

标签: python django

我正在制作一个网页。有两种观点。 IndexDetail。 在索引中,我使用response.set_cookie('key', key) response = HttpResponseRedirect(file_url)为用户设置了Cookie。当我尝试使用

从cookie获取数据时,在detail函数中
   if 'key' not in request.cookies:
      key = request.COOKIES['key']  

我收到错误:'WSGIRequest' object has no attribute 'cookies'。 详细的错误链接:http://dpaste.com/1P017V6

请帮帮我! 提前谢谢。

1 个答案:

答案 0 :(得分:4)

您键入了request.cookies,但cookies必须为大写。试试这个:

if 'key' not in request.COOKIES: