답변:
with
템플릿 태그를 사용할 수 있습니다 .
{% with name="World" %}
<html>
<div>Hello {{name}}!</div>
</html>
{% endwith %}
이 앱은 포함해야 templatetags
같은 수준에서, 디렉토리 models.py
, views.py
잊어하지 않습니다 - 등이 이미 존재하지 않는 경우를 만들 __init__.py
디렉토리가 파이썬 패키지로 처리하기 위해 파일을.
define_action.py
내에 이름이 지정된 파일을 작성하십시오 .from django import template
register = template.Library()
@register.simple_tag
def define(val=None):
return val
참고 : 개발 서버는 자동으로 다시 시작되지 않습니다. templatetags
모듈을 추가 한 후 템플릿에서 태그 또는 필터를 사용하려면 서버를 다시 시작해야합니다.
{% load define_action %}
{% if item %}
{% define "Edit" as action %}
{% else %}
{% define "Create" as action %}
{% endif %}
Would you like to {{action}} this item?
add
: 을 사용해야 {% define counter|add:1 as counter %}
합니다. 다른 작업에서도 마찬가지입니다.
"with"블록에 모든 것을 넣을 필요가없는 다른 방법은 컨텍스트에 새 변수를 추가하는 사용자 정의 태그를 작성하는 것입니다. 에서처럼 :
class SetVarNode(template.Node):
def __init__(self, new_val, var_name):
self.new_val = new_val
self.var_name = var_name
def render(self, context):
context[self.var_name] = self.new_val
return ''
import re
@register.tag
def setvar(parser,token):
# This version uses a regular expression to parse tag contents.
try:
# Splitting by None == splitting by spaces.
tag_name, arg = token.contents.split(None, 1)
except ValueError:
raise template.TemplateSyntaxError, "%r tag requires arguments" % token.contents.split()[0]
m = re.search(r'(.*?) as (\w+)', arg)
if not m:
raise template.TemplateSyntaxError, "%r tag had invalid arguments" % tag_name
new_val, var_name = m.groups()
if not (new_val[0] == new_val[-1] and new_val[0] in ('"', "'")):
raise template.TemplateSyntaxError, "%r tag's argument should be in quotes" % tag_name
return SetVarNode(new_val[1:-1], var_name)
이를 통해 템플릿에 다음과 같은 내용을 작성할 수 있습니다.
{% setvar "a string" as new_template_var %}
요한이 묘사 한 것과 같은 속임수가 있습니다. 그러나 장고의 템플릿 언어는 의도적으로 변수 설정을 지원하지 않습니다 ( 템플릿 에 대해서는 장고 문서 의 "철학"상자 참조 ).
이 때문에, 어떤 변수를 변경하기 위해 권장되는 방법 입니다 파이썬 코드를 만지지 통해.
이를위한 가장 좋은 해결책은 사용자 정의를 작성하는 것 assignment_tag
입니다. 이 솔루션은 with
태그를 사용하는 것보다 더 깨끗 합니다. 로직과 스타일을 매우 명확하게 구분하기 때문입니다.
템플릿 태그 파일 (예 :)을 만들어 시작하십시오 appname/templatetags/hello_world.py
.
from django import template
register = template.Library()
@register.assignment_tag
def get_addressee():
return "World"
이제 get_addressee
템플릿 에서 템플릿 태그를 사용할 수 있습니다 .
{% load hello_world %}
{% get_addressee as addressee %}
<html>
<body>
<h1>hello {{addressee}}</h1>
</body>
</html>
아마도 2009 년에 default
템플릿 필터 가 옵션이 아니 었을 것입니다 ...
<html>
<div>Hello {{name|default:"World"}}!</div>
</html>
{% with state=form.state.value|default:other_context_variable %}
대신에 other_context_variable
우리는 또한 어떤 사용할 수 있습니다 'string_value'
뿐만 아니라