使用 Twig 变量作为其他 Twig 变量的属性名称
我必须使用一个 Twig 变量作为另一个 Twig 变量的属性。
在 for 循环中,我获取特定实体的属性,并希望使用这些属性来获取另一个 for 循环中实体变量的属性内容。
一些代码来说明这一点:
{% for entity in entities %}
{{entity.foo}}, {{entity.bar}}<br />
{% for property in specialdynamicproperties %}
{{entity.property}} <!-- property has the content foobar for example, I want to use it as the property accessor for entity -->
{% endfor %}
{% endfor %}
谢谢。