当我运行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)
答案 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。