Django 소스 베이스 11 심층 학습 - Django 중template 모듈 간략 분석 1

2499 단어
먼저template 디렉터리에 있는 파일을 하나씩 분석합니다
template
    |----loaders
        |----__init__.py
        |----app_directories.py
        |----cached.py
        |----eggs.py
        |----filesystem.py
    |----__init__.py
    |----base.py					  ,token,     ,     ,token  ,     。  ,  ,    ,    ,    ,      ,   
    |----context.py					   ,     ,     (       )
    |----debug.py					      
    |----defaultfiters.py				     
    |----defaulttags.py				     
    |----loader.py					        
    |----loader_tags.py				   ,   ,    ,    ,
    |----response.py				      ,       
    |----smartif.py					     

실제 사용 과정 중에는 이렇다
html 코드
{% for story in story_list %}
<h2>
  <a href="{{ story.get_absolute_url }}">
    {{ story.headline|upper }}
  </a>
</h2>
<p>{{ story.tease|truncatewords:"100" }}</p>
{% endfor %}

백그라운드
class PersonClass2:
...     def name(self):
...         return "Samantha"
>>> t = Template("My name is {{ person.name }}.")
>>> t.render(Context({"person": PersonClass2}))
from django.shortcuts import render_to_response
render_to_response('xxx.html', {})

분석을 통해 알 수 있다
Template 템플릿 리소스 로드
문법 분석기lexer를 통해 문법 목록으로 나누기
분할 후의 어법은 문법 분석기를 거친다.구문 트리를 만듭니다.
렌더링의 과정은 문법 트리를 옮겨다니며, 문법을 대응하는 키워드 방법과 필터 방법을 통과시킨다.내용 교체를 실현하다.
그중에는 세 가지 관건적인 과정이 있다.
1: 문법 해석
2: 구문 해석, 구문 트리 설정, 구문 키워드 및 컨텐트 교체 수행.
3: 렌더링 중에 구문 키워드와 컨텐트 대체를 수행합니다.
어법의 해석은base에 있다.py에서lexer 클래스를 정의합니다.중점을 두다
# template syntax constants
BLOCK_TAG_START = '{%'
BLOCK_TAG_END = '%}'
VARIABLE_TAG_START = '{{'
VARIABLE_TAG_END = '}}'
COMMENT_TAG_START = '{#'
COMMENT_TAG_END = '#}'

# match a variable or block tag and capture the entire tag, including start/end
# delimiters
tag_re = (re.compile('(%s.*?%s|%s.*?%s|%s.*?%s)' %
          (re.escape(BLOCK_TAG_START), re.escape(BLOCK_TAG_END),
           re.escape(VARIABLE_TAG_START), re.escape(VARIABLE_TAG_END),
           re.escape(COMMENT_TAG_START), re.escape(COMMENT_TAG_END))))

정규적인 조합.즉 필터 {{} {%} {# # 3종입니다.
변수 유형인 경우 변수 표현식 노드를 구성합니다.Block 형식이라면 Block 노드를 구성합니다.
다음은 렌더링된 내용 부분인 Context를 보십시오. 주로 [{key:value}] 목록을 봉인합니다.렌더링할 때 색인 값을 사용합니다.
그럼 남은 문제는 키워드와 필터를 어떻게 만드는가입니다.

좋은 웹페이지 즐겨찾기