gpt4 book ai didi

python - 使用 Jinja 按嵌套字典值过滤

转载 作者:太空宇宙 更新时间:2023-11-04 02:02:27 25 4
gpt4 key购买 nike

我的 SaltStack Pillar 中有以下 YAML:

prometheus:
services:
cassandra:
enabled: False
cockroachdb:
enabled: True
haproxy:
enabled: True
swift:
enabled: False

我希望能够遍历已启用服务的列表。

{% for enabled_service_name in prometheus.services | selectattr('enabled') %}
{{ enabled_service_name }}
{% endfor %}

但是,这不起作用,因为我要过滤的属性位于服务名称下方的嵌套字典中:

{'cassandra': {'enabled': False},
'cockroachdb': {'enabled': True},
'haproxy': {'enabled': True},
'swift': {'enabled': False}}

我显然可以通过在循环内应用条件测试来实现我想要的:

{% for name, properties in prometheus.services | dictsort %}
{% if properties.enabled %}
configuration for {{ name }}
{% endif %}
{% endfor %}

但是,我会经常遍历此列表,并且更愿意让 Jinja 在 for 循环中内联应用过滤器。

有没有办法根据嵌套字典中的项的值进行过滤?

最佳答案

好吧,我认为在这种情况下,yaml 文件的结构越好,您解决问题的选项就越多。

我建议进行以下重组:

prometheus:
services:
- name: cassandra
enabled: False
- name: cockroachdb
enabled: True
- name: haproxy
enabled: True
- name: swift
enabled: False

然后你可以用不同的方式迭代,这可能是一种方式:
{{ prometheus.services | selectattr('启用',真)| map (属性='名称')|列表}}

希望对您有所帮助!

关于python - 使用 Jinja 按嵌套字典值过滤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55457718/

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