将数据添加到分页器(KnpPaginatorBundle,Symfony)
Posted
技术标签:
【中文标题】将数据添加到分页器(KnpPaginatorBundle,Symfony)【英文标题】:Add data to paginator (KnpPaginatorBundle, Symfony) 【发布时间】:2015-09-26 18:03:24 【问题描述】:我正在使用 KnpPaginatorBundle。
假设我有这样的东西:
$em = $this->getDoctrine()->getEntityManager();
$qb = $em->createQueryBuilder()
->select('p.id, p.name, p.description)
->from('My\Bundle\Entity\Post', 'p')
->where('p.unread is NULL')
$query = $qb->getQuery();
$posts = $query->getResult();
还有我的分页器:
$paginator = $this->get('knp_paginator');
$posts = $paginator->paginate(
$posts,
$request->query->getInt('page', 1),
3
);
Everythink 运行良好,但我想通过 foreach 将我自己的数据添加到 $posts。
我的例子不起作用:
foreach ($posts as $key => $value)
$posts [$key]['filterPath'] = 'example';
我收到错误Notice: Indirect modification of overloaded element of Knp\Bundle\PaginatorBundle\Pagination\SlidingPagination has no effect
我该如何解决? 问候
【问题讨论】:
【参考方案1】:试试类似的方法
foreach ($posts as $key => $value)
$tab=$posts[$key];
$tab=['filterPath'] = 'example';
$posts['key']=$tab;
据我所知 $posts 不是普通数组,不能直接访问
【讨论】:
以上是关于将数据添加到分页器(KnpPaginatorBundle,Symfony)的主要内容,如果未能解决你的问题,请参考以下文章
如何将多个 UIImageViews 添加到分页 UIScrollView?