具有多个包含标签的 django 上下文

发布于 2024-09-27 00:23:50 字数 214 浏览 1 评论 0原文

我对上下文有一点问题。

我有一个带有 param 的包含标签:

takes_context=True 

在此包含标签的模板中,我调用另一个包含参数

takes_context = True

但在最后一个包含_tag 上下文中为 None。

我不知道为什么?

I have a little problem with the context.

I have an inclusion tag with the param :

takes_context=True 

In this inclusion's tag's template, I call for another inclusion_tag which has also the param

takes_context = True

But in this last inclusion_tag context is None.

I don't know why ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只为守护你 2024-10-04 00:23:50

不要忘记第二个包含标签的上下文是第一个包含标签返回的内容。如果您需要原始模板中的整个上下文,最好将其复制过来:

@register.inclusion_tag('template.html', takes_context=True)
def first_inclusion_tag(context, value):
    params = {'value': value}
    params.update(context)
    return params

Don't forget that the context for the second inclusion tag is whatever is returned from the first one. If you need the entire context from the original template, it's best to copy it over:

@register.inclusion_tag('template.html', takes_context=True)
def first_inclusion_tag(context, value):
    params = {'value': value}
    params.update(context)
    return params
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文