21

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 %}

ありがとう。

4

2 に答える 2

34

属性関数は、探しているものです。

編集:

  {{ attribute(object, method) }}
  {{ attribute(object, method, arguments) }}
  {{ attribute(array, item) }}
于 2013-01-23T19:49:22.143 に答える