gpt4 book ai didi

jinja2 - 我如何在 Jinja 指令中发表评论?

转载 作者:行者123 更新时间:2023-12-04 17:17:32 26 4
gpt4 key购买 nike

我有一个金贾set指令如下:

{% set mylist = [
"item 1",
"another item",
"yet another item",
] %}

我想对第二个列表项添加评论。 Jinja 支持吗? 我尝试了以下方法:
{% set mylist = [
"item 1",
"another item", # My comment
"yet another item",
] %}


{% set mylist = [
"item 1",
"another item", ## My comment
"yet another item",
] %}

,但它们都不起作用。我正在使用 Jinja 2.6。

最佳答案

不,Jinja 不支持内联注释。但是,您可以使用注释块:

{#
BUG: Added "another item" because of raisins.
Don't remove it until #12345 is fixed
#}
{% set mylist = [
"item 1",
"another item",
"yet another item",
] %}

关于jinja2 - 我如何在 Jinja 指令中发表评论?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32861124/

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