如何在模板代码中设置变量的值?

时间:2009-07-01 17:34:35

标签: django django-templates

说我有一个模板

<html>
<div>Hello {{name}}!</div>
</html>

在测试它时,定义变量的值而不触及调用此模板的python代码会很有用。所以我正在寻找像这样的东西

{% set name="World" %}     
<html>
<div>Hello {{name}}!</div>
</html>

Django中是否存在类似的内容?

9 个答案:

答案 0 :(得分:280)

您可能需要with模板标记。

{% with "World" as name %}     
<html>
<div>Hello {{name}}!</div>
</html>
{% endwith %}

修改

现在使用the with tag的正确方法是:(仍支持旧格式)

{% with name="World" greeting="Hello" %}     
<html>
<div>{{ greeting }} {{name}}!</div>
</html>
{% endwith %}

答案 1 :(得分:29)

另一种不要求将所有内容放在“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 %}

请注意,其中大多数是taken from here

答案 2 :(得分:24)

创建模板标签:

该应用应包含一个templatetags目录,与models.pyviews.py等级相同。如果尚不存在,请创建它 - 不要忘记__init__.py文件,以确保将目录视为Python包。

使用以下代码在 templatetags 目录中创建名为define_action.py的文件:

from django import template
register = template.Library()

@register.assignment_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?

答案 3 :(得分:21)

有像约翰描述的那样的技巧;但是,Django的设计模板语言不支持设置变量(参见Django documentation for templates中的“Philosophy”框)。
因此,通过触摸Python代码,推荐的更改任何变量的方法是

答案 4 :(得分:10)

最佳解决方案是编写自定义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>

答案 5 :(得分:4)

也许default template filter在2009年不是一个选择......

<html>
<div>Hello {{name|default:"World"}}!</div>
</html>

答案 6 :(得分:3)

这一般不是一个好主意。执行python中的所有逻辑并将数据传递给模板进行显示。模板应该尽可能简单,以确保那些在设计上工作的人可以专注于设计,而不是担心逻辑。

举一个例子,如果你需要模板中的一些派生信息,最好把它放到python代码中的变量中,然后将它传递给模板。

答案 7 :(得分:2)

使用with statement

{% with total=business.employees.count %}
    {{ total }} employee{{ total|pluralize }}
{% endwith %}

我不能暗示this answer中第一段的代码。也许模板语言已弃用旧格式。

答案 8 :(得分:1)

在您的模板中,您可以这样做:

{% jump_link as name %}
{% for obj in name %}
    <div>{{obj.helo}} - {{obj.how}}</div>
{% endfor %}

在模板标签中,您可以添加如下标签:

@register.assignment_tag
def jump_link():
    listArr = []
    for i in range(5):
        listArr.append({"helo" : i,"how" : i})
    return listArr