direct_to_template에서 TemplateView로 마이그레이션할 수 없습니다.
참조 웹 주소:http://codezine.jp/article/detail/4264?p=3
Django1.6로 위의 튜토리얼을 진행하면
# 略
from django.views.generic.simple import direct_to_template
# 略
def item_page_display(request, item_id):
item = get_object_or_404(Item, id=item_id)
return direct_to_template(request, 'page/item.html', extra_context = {'item': item })
그럼,direct_to_template의 ImportError가 발생했기 때문입니다.TemplateView 사용을 고려하십시오.
참조 웹 주소:http://stackoverflow.com/questions/11005733/moving-from-direct-to-template-to-new-templateview-in-django
하지만
AttributeError:'function'object has no attribute'get'은 사이트-packages/django/middleware/clickjackking입니다.py의 process_response에서 일어났기 때문에 몰라졌어요.
direct_to_render 및 render_to_response를 가져오고 사용합니다.
# 略
from django.shortcuts import render, render_to_response
from django.template import RequestContext
# 略
def item_page_display(request, item_id):
item = get_object_or_404(Item, id=item_id)
return render_to_response('page/item.html', {'item':item}, context_instance=RequestContext(request))
# または、よりシンプルに、return render(request, 'page/item.html', {'item': item})
참조 웹 주소:https://groups.google.com/forum/#!topic/django-users/ZuDi-iqd1Xk 이렇게 되자 상품 화면이 대충 드러났다.
Reference
이 문제에 관하여(direct_to_template에서 TemplateView로 마이그레이션할 수 없습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kazuhirokomoda/items/2fe06a72bb3d9ef94cc7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)