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)

または render を代わりに使用する

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

ノート:

render() は、RequestContext の使用を強制する context_instance 引数を指定した render_to_response() の呼び出しと同じです。

于 2015-01-09T13:20:26.300 に答える