1

当我运行 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)
4

1 回答 1

2

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

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

或改用渲染

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

笔记:

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

于 2015-01-09T13:20:26.300 回答