标签: jinja2
如何在Jinija模板中使用set数据类型?
我有这样的东西
{% set end_port_channel = [] %} ..snip... {% for item in set(end_port_channel) %}}
我得到的错误是:
jinja2.exceptions.UndefinedError:'set'未定义
也尝试过此方法,但没有帮助:
{% for item in end_port_channel | set %}}