gpt4 book ai didi

带有上下文变量参数的 Django 自定义模板标签

转载 作者:行者123 更新时间:2023-12-04 14:18:36 25 4
gpt4 key购买 nike

我有一个显示日历的自定义模板标签。我想根据动态值填充日历上的某些项目。

这是标签:

@register.inclusion_tag("website/_calendar.html")
def calendar_table(post):
post=int(post)
imp=IMP.objects.filter(post__pk=post)
if imp:
...do stuff

在我的模板中,当我传递硬编码值时它工作正常,例如
    {% load inclusion_tags %}

{% calendar_table "6" %}

但是,当我尝试诸如 {% calendar_table "{{post.id}}"%} 之类的内容时,它会为 int() 尝试引发一个 ValueError 错误。我怎样才能解决这个问题?

最佳答案

你要{% calendar_table post.id %} ;额外的 {{}}是什么导致你胃灼热。

请注意,在您的自定义标记中,您需要获取传递的字符串 ( "post.id" ) 并使用 Variable.resolve 针对上下文解析它。 . Django 文档中有更多相关信息;特别是,看这里:http://docs.djangoproject.com/en/1.3/howto/custom-template-tags/#passing-template-variables-to-the-tag

关于带有上下文变量参数的 Django 自定义模板标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6037789/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com