gpt4 book ai didi

python - 在 Django 模板中, `Context` 是一个堆栈。做什么的?

转载 作者:太空宇宙 更新时间:2023-11-03 11:57:19 25 4
gpt4 key购买 nike

Django 文档 say Context 对象是一个堆栈:

from django.template import Context
c = Context()
c['a'] = 1
c.push() # Make a new Context level
c['a'] = 2
print(repr(c)) # [{'a': 1}, {'a': 2}]

还有文档说

Using a Context as a stack comes in handy in some custom template tags

但是,没有这方面的例子。我的建议:使用干净的上下文渲染子模板很有用;但是可以只使用一个新的空 Context() 对象来代替。

那么,用例是什么?

最佳答案

用例将是范围界定,例如在循环和模板继承中。

关于python - 在 Django 模板中, `Context` 是一个堆栈。做什么的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4341576/

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