from django.shortcuts import render의 django.shortcuts 원본 코드 분석

1730 단어 Django
4django.shortcuts 가방 하나,django.shortcuts 소스
from django.http import (
    Http404, HttpResponse, HttpResponsePermanentRedirect, HttpResponseRedirect,
)
from django.template import loader
from django.urls import NoReverseMatch, reverse
from django.utils import six
from django.utils.encoding import force_text
from django.utils.functional import Promise

에서머리가 기초적인 것을 많이 끌어들인다는 것을 알기 어렵지 않다.렌더의 원본을 먼저 볼게요.
def render(request, template_name, context=None, content_type=None, status=None, using=None):
    """
    Returns a HttpResponse whose content is filled with the result of calling
    django.template.loader.render_to_string() with the passed arguments.
    """
    content = loader.render_to_string(template_name, context, request, using=using)
    return HttpResponse(content, content_type, status)

그리고 렌더의 사례를 볼게요.
from django.shortcuts import render

def my_view(request):
    # View code here...
    return render(request, 'myapp/index.html', {
        'foo': 'bar',
    }, content_type='application/xhtml+xml')

그리고 같은 기능을 실현하는 대비를 보세요.
from django.http import HttpResponse
from django.template import loader

def my_view(request):
    # View code here...
    t = loader.get_template('myapp/index.html')
    c = {'foo': 'bar'}
    return HttpResponse(t.render(c, request), content_type='application/xhtml+xml')

반환된 결과는 모두 콘텐츠와 콘텐츠type
쉽게 말하면 렌더가 템플릿을'my app/index'라고 합니다.html'과 데이터'foo':'bar'의 내용이 함께 과장되어 프론트에 되돌아왔다.
django.shortcuts render는 이 프로그래밍 과정을 간소화합니다.

좋은 웹페이지 즐겨찾기