我正在制作一个网页。有两种观点。 Index
和Detail
。
在索引中,我使用response.set_cookie('key', key)
response = HttpResponseRedirect(file_url)
为用户设置了Cookie。当我尝试使用
detail
函数中
if 'key' not in request.cookies:
key = request.COOKIES['key']
我收到错误:'WSGIRequest' object has no attribute 'cookies'
。
详细的错误链接:http://dpaste.com/1P017V6
请帮帮我! 提前谢谢。
答案 0 :(得分:4)
您键入了request.cookies
,但cookies
必须为大写。试试这个:
if 'key' not in request.COOKIES: