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