如何使用Pager在html.twig中输出结果

时间:2019-02-28 07:35:34

标签: twig drupal-8

我从hook_preprocess_node()得到的搜索结果为:

foreach ($search_result->getResultItems() as $result_item) { 
  $result = [ 'title' => $result_item->getField('title')->getValues()[0], ]; 
} 
$variables['result'] = $result;

它在node.html.twig中的输出为:

{% for key,value in result %}
  {{ value['title'] }}
{% endfor %}

我将所有结果都放在一个页面上。如何使用分页器在html.twig中输出结果?可能吗?

0 个答案:

没有答案