【发布时间】:2011-07-04 01:47:54
【问题描述】:
这是我的代码:
from django.shortcuts import render_to_response, get_object_or_404
from django.template import RequestContext
from django import http
from django.http import HttpResponse
def main(request, template_name='index.html'):
HttpResponse.set_cookie('logged_in_status', 'zjm1126')
context ={
'a':a,
'cookie':HttpResponse.get_cookie('logged_in_status'),
}
return render_to_response(template_name, context)
#return http.HttpResponsePermanentRedirect(template_name)
它引发了这个异常:
unbound method set_cookie() must be called with HttpResponse instance as first argument (got str instance instead)
我能做什么?
【问题讨论】: