count relations inside loop in twig

2019-06-15 00:33发布

I use Symfony2 and twig templating. Think of the Q&A exact same as stackoverflow. There are list of questions with the count of score, answers, views and so on. How to count the answers of the qeustions inside loop in twig? There are OneToMany relation between Question and Answer tables.

{% for question in questions %}
    <li>{{ question.score }}</li>
    <li>{# there should be the count // count($question->getAnswers()) #}</li>
    <li>{{ question.view }}</li>
{% endfor %}

Or if there is any better way to achieve this, I am open to suggestions.

1条回答
做个烂人
2楼-- · 2019-06-15 01:17

This will print the count:

{{ question.answers|length }}
查看更多
登录 后发表回答