count relations inside loop in twig

2019-06-15 01:03发布

问题:

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:

This will print the count:

{{ question.answers|length }}