【发布时间】:2010-04-05 07:13:26
【问题描述】:
我们不能在使用 HttpResponseRedirect 时发送字典变量
render_to_response('edited/display.html',context_instance=RequestContext(request,{'newlist': newlist}))
//How can the dictionary and the request sent back again
//sumthing like this
return HttpResponseRedirect('edited/display.html',context_instance=RequestContext(request,{'newlist': newlist}))
【问题讨论】:
标签: python django django-views