我有一个我正在经历的命名元组列表,每个在渲染要求上都略有不同,所以我想根据属性调用正确的宏。我所拥有的是:
{% macro format_item(item) %}
{% if item.type_of == 'a' %}
{{ format_a(item) }}
{% elif item.type_of == 'b' %}
{{ format_b(item) }}
{% elif item.type_of == 'c'%}
{{ format_c(item) }}
{% elif item.type_of == 'd'%}
{{ format_d(item) }}
{% else %}
{{ format_general(item) }}
{% endif %}
{% endmacro %}
但我想要的是:
...iterating through list of items
{{ call macro based off item.type_of }}
此时在常规python中我会做类似的事情
getattr(object_with_method_to_produce_templates, item)
但还没有找到有效使用 attr 过滤器的方法(如果我能在这种情况下正确使用它的话)。
我发现 flask.get_template_attribute 在其他地方寻找可能很有趣(如果我可以提前完成所有操作并将预先计算和预先格式化的项目发送到模板)。也许太多了,超出了我此时想做的事情。
从各种宏列表中调用而不是从将来可能会变得相当大的 if then 列表中调用的更好方法是什么?似乎是一个常见问题,但我并没有偶然发现我正在寻找的确切答案。
编辑:
我将此添加到我正在做的事情中,试图生成一个可调用宏作为我要渲染的项目的一部分
from flask import get_template_attribute
from jinja2 import Template
test_template = Template('{% macro test_macro(item) %}<div id="test-div">sent to me: {{ item }}</div>{% endmacro %}')
...在项目生成中...
template = get_template_attribute(test_template, 'test_macro')
...在模板中...迭代项目然后为每个项目
{{ item.template("testing this method") }}
哪种方法有效,但只为字母生成字符串字母,而不是像常规宏那样(即 div 不呈现为 div,仅呈现为文本)。
<div id="test-div">sent to me: testing this method</div>
所以我需要给模板一些上下文,或者一些更接近目标但似乎不正确的东西。
编辑2:
{{ item.template("testing this method")|safe }}
返回我正在寻找的东西,所以这是可以通过的,我可能能够绕过我拥有的 namedtuple 安排,只需传递一个宏......我想更多的工作。这是最佳/优选还是一团糟?