“标记”的状态Jinja 中的关键字
我正在查看 Jinja 的模板文档,并注意到该示例没有使用marker 关键字,也不会在文档中稍后使用。但是,如果您查看此处,则会发现
marker
用于block
的示例。
这是为什么? marker
是否已弃用?一份文档是否比另一份文档更新?
I was looking though the templating documentation for Jinja and noticed that the example does not use the marker
keyword in the base template, nor is it used later on in the documentation. However if you look here, marker
is used in the example with block
.
Why is that? Is marker
deprecated? Is one doc more up to date than the other?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些是 Jinja 两个截然不同版本的文档。 http://jinja.pocoo.org/docs/ 记录当前版本 Jinja2,而 http://wsgiarea.pocoo.org/jinja/ 记录了一个旧的 jinja“pre 1.0”版本,大概是出于历史目的。
marker
可能在 Jinja2 中被删除,因为它相当于一个空的block
标记。Those are documentation for two very different versions of Jinja. http://jinja.pocoo.org/docs/ documents the current version, Jinja2, while http://wsgiarea.pocoo.org/jinja/ documents an old jinja "pre 1.0" version, for historical purposes presumably.
marker
was probably removed in Jinja2 because it is equivalent to an emptyblock
tag.