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 %}
ありがとう。