2016-10-20 105 views

回答

0

你在使用Doctrine嗎?如果你看看這個:http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/query-builder.html#limiting-the-result

如果你只能訪問到樹枝文件,你可以使用條件和使用樹枝檢查收集的指標:http://twig.sensiolabs.org/doc/tags/for.html#the-loop-variable

例子:

{% for item in news %} {% if loop.index < 10 %} {% endfor %}

你可以閱讀更多關於分頁瀏覽:Symfony Doctrine Pagination