Django抛出错误' WSGIRequest'对象没有属性' push'

时间:2015-01-09 13:10:53

标签: python django wsgi render-to-response

当我运行django服务器并加载索引页面时,它说......

错误:

'WSGIRequest' object has no attribute 'push'.

这是我的代码

def index(request):
    context_dict = {'boldmessage': "anything can b written here"}
    return render_to_response('rango/index.html', context_dict, request)

1 个答案:

答案 0 :(得分:2)

返回时删除请求..应该是

return render_to_response('rango/index.html',context_dict)

或使用渲染

return render(request, 'rango/index.html', context_dict)

注意:

  

render()与使用context_instance参数调用render_to_response()相同,后者强制使用RequestContext。