這是我的views.py代碼。django中未定義rendor_to_response錯誤
from __future__ import unicode_literals
from django.template import RequestContext
from django.shortcuts import render_to_response
def index(request):
context = RequestContext(request)
context_dict = {'bold-message': "I am bold font from the context"}
return render_to_response('rango/index.html', context_dict, context)
當我在服務器中運行此項目時啓動項目後,我收到以下異常。
全局名稱「rendor_to_response」沒有定義
請告訴我做錯了什麼。
您使用的是哪個版本? – Exprator
版本是1.11.1 – user8220311
那麼我會說使用渲染,而不是render_to_response作爲其過時 – Exprator