我有一个“类别”实体,其中包含
/**
* @ORM\Column(type="string", length=255)
*/
protected $nameFr;
/**
* @ORM\Column(type="string", length=255)
*/
protected $nameEn;
现在,我正在尝试在视图中显示本地化名称,我可以使用以下方法显示一个或另一个:
{{ categories.nameFr }} and {{ categories.nameEn }}
所以我做了一个方法,getName()
所以我可以使用{{ categories.name }}
我只需要访问语言环境,因此我protected $locale
使用 setter 和 getter 向实体添加了一个属性,并在调用视图之前设置了语言环境(顺便说一下,我使用 @Template 进行返回):
$locale = $this->getRequest()->getLocale();
$categories->setLocale($locale);
return array(
'categories' => $categories
);
这是可行的,但现在我实现了一个分页包KnpLabs/KnpPaginatorBundle,它需要发送查询而不是实体:
$em = $this->getDoctrine()->getManager();
$categoriesQuery = $em->createQueryBuilder()
->select('category')
->from('OylexCategoryBundle:Category', 'category')
;
$locale = $this->getRequest()->getLocale();
$categoriesQuery->setLocale($locale);
$paginator = $this->get('knp_paginator');
$categoriesPagination = $paginator->paginate(
$categoriesQuery,
$this->get('request')->query->get('page', 1),
30
);
return array(
'categoriesPagination' => $categoriesPagination
);
这失败并显示错误消息:FatalErrorException: Error: Call to undefined method Doctrine\ORM\QueryBuilder::setLocale()
。
如果我尝试使用该方法setLocale()
,$categoriesPagination
则会失败并显示错误消息:FatalErrorException: Error: Call to undefined method Knp\Bundle\PaginatorBundle\Pagination\SlidingPagination::setLocale()
有没有办法将语言环境传递给实体?或者有没有更好的方法来处理这种情况?
谢谢,