具有多个包含标签的 django 上下文
我对上下文有一点问题。
我有一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要忘记第二个包含标签的上下文是第一个包含标签返回的内容。如果您需要原始模板中的整个上下文,最好将其复制过来:
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: