在学说包中的实体分页器中找不到方法



我正在尝试清理一些以混乱的方式完成的代码,现在我在使用教义的分页器时遇到了麻烦。 当我访问处理分页器的页面以显示我博客的所有不同文章时,我收到此错误:

属性 "id" 和方法之一 "id(("、"getid(("/"isid(("/"hasid((" 或 "__call((" 都不存在,并且在类 "Doctrine\ORM\Tools\Pagination\Paginator" 中具有公共访问权限。

在原则上供应商捆绑包中,这些方法没有设置,但我的实体有它们,我知道禁止编辑供应商文件。我错过了一些东西,因为我不知道我是否应该扩展我的分页器实体并添加那些缺少的方法,或者还有更多的事情要做?

我刚开始symfony,我知道我的基础不足以自己理解这一切。

非常感谢您的时间和关注。

这是我的文章路由类别控制器:

/**
* @Route("/categorie/{id}", name="categorie")
*
* @param Request                       $request
* @param Helper                        $helper
* @param AuthorizationCheckerInterface $authChecker
* @param DocumentCategory              $categorie
* @param TwitterService                $twitterService
*
* @return RedirectResponse|Response
*/
public function categorie(
Request $request,
Helper $helper,
AuthorizationCheckerInterface $authChecker,
DocumentCategory $categorie,
TwitterService $twitterService
) {
if (!$authChecker->isGranted('IS_AUTHENTICATED_FULLY')
&& !$authChecker->isGranted('IS_AUTHENTICATED_REMEMBERED')) {
return $this->redirectToRoute('login');
}
$page = (int) ($request->get('page'));
if (0 === $page) {
$page = 1;
}
$userType = $this->getDoctrine()->getRepository('App:User')
->getManagerExpertCollabo($this->getUser());
$articleAlaUneListe = [];
$articleIdListe = $helper->getArticleIdAuth($authChecker);
$articleListe = $this->getDoctrine()
->getRepository('App:Document')
->getPage(
self::ITEM_PER_PAGE * ($page - 1),
self::ITEM_PER_PAGE,
'document.dateCreated',
'DESC',
'(documentCategory.id = ''.$categorie->getId().'' and '.$helper->baseRequestArticle().')',
7,
[],
$articleIdListe
);
[$articlePopulaireListe, $categorieListe, $totalPage] = $this->getPopularArticleList(
$articleListe,
$helper,
$articleIdListe
);
$articlesList->getDocuments();
$feedData = $twitterService->getTwitterFeed();
return $this->render('article/list.html.twig', [
'pageClass' => 'backoffice withFooterLarge dashboard',
'totalPage' => $totalPage,
'page' => $page,
'feedData' => $feedData,
'categorieListe' => $categorieListe,
'categorie' => $categorie,
'articleAlaUneListe' => $articleAlaUneListe,
'articlePopulaireListe' => $articlePopulaireListe,
'articleListe' => $articleListe, ]);
}

以下是类别字段的文档实体:

/**
* @ORMJoinTable(name="ht_lk_document_category"),
* @ORMManyToMany(targetEntity="AppEntityDocumentCategory", inversedBy="documents")
*/
private $categories;
/**
* @return Collection|array<DocumentCategory>
*/
public function getCategories(): Collection
{
return $this->categories;
}
public function setCategories($category): self
{
$this->categories = $category;
return $this;
}

下面是文档类别实体:

/**
* @ORMManyToMany(targetEntity="AppEntityDocument", mappedBy="categories")
*/
private $documents;
/**
* @return Collection|Document[]
*/
public function getDocuments(): Collection
{
return $this->documents;
}

这是文档存储库:

public function getPage($first_result, $max_results, $orderby, $direction, $criteria, $documentType = null, $searchWordArray = [], $articleIdListe = '')
{
$qb = $this->createQueryBuilder('docArticle');
$qb->select('docArticle')
->addSelect('documentCategory', 'documentCategory')
->addSelect('user', 'user')
/*
if(sizeof($searchWordArray) > 0){
$fieldIndice = 1;
foreach($searchWordArray as $searchWord){
$qb->andWhere('(document.name_fr LIKE ?'.$fieldIndice.' or document.name_en LIKE ?'.$fieldIndice.' or document.content_fr LIKE ?'.$fieldIndice.' or document.content_en LIKE ?'.$fieldIndice.')');
$qb->setParameter($fieldIndice++, '%'.$searchWord.'%');
}
} */
->leftJoin('docArticle.categories', 'documentCategory')
->leftJoin('docArticle.author', 'user')
->setFirstResult($first_result)
->setMaxResults($max_results);
if (!empty($criteria)) {
$qb->where('('.$criteria.')');
}
if (!empty($orderby)) {
$qb->orderBy($orderby, $direction);
}
$pag = new Paginator($qb->getQuery());
$qb->setFirstResult(0);
$qb->setMaxResults(PHP_INT_MAX);
$sql = $qb->getQuery()->getSql();
if ('()' !== $articleIdListe) {
$qb->where('(docArticle.id IN '.$articleIdListe);
}
$compte = count($qb->getQuery()->getScalarResult());
return ['page' => $pag, 'compte' => $compte];
}

最后是文档类别存储库:

/**
* @param $first_result
* @param $max_results
* @param $orderby
* @param $direction
* @param $criteria
* @param int|null $documentType
* @param array    $searchWordArray
* @param string   $articleIdListe
*
* @return array
*/
public function getPage(
$first_result,
$max_results,
$orderby,
$direction,
$criteria,
$documentType = null,
$searchWordArray = [],
$articleIdListe = ''
) {
$qb = $this->createQueryBuilder('document');
$qb->select('document')
->addSelect('documentCategory', 'documentCategory')
->addSelect('user', 'user')
->addSelect('documentType', 'documentType');
if (count($searchWordArray) > 0) {
$fieldIndice = 1;
foreach ($searchWordArray as $searchWord) {
$qb->andWhere(
'('
.'document.name_fr LIKE ?'.$fieldIndice
.' or document.name_en LIKE ?'.$fieldIndice
.' or document.content_fr LIKE ?'.$fieldIndice
.' or document.content_en LIKE ?'.$fieldIndice
.')'
);
$qb->setParameter($fieldIndice++, '%'.$searchWord.'%');
}
}
if ($documentType) {
if (mb_strlen($articleIdListe) > 3) {
$qb->andWhere('(documentType.id = :documentType OR document.id IN '.$articleIdListe.')')
->setParameter('documentType', $documentType);
} else {
$qb->andWhere('(documentType.id = :documentType)')
->setParameter('documentType', $documentType);
}
}
$qb->leftJoin('document.categories', 'documentCategory')
->leftJoin('document.documentType', 'documentType')
->leftJoin('document.author', 'user')
->setFirstResult($first_result)
->setMaxResults($max_results)
->andWhere('document.documentType<>6');
if (!empty($criteria)) {
$qb->andWhere('('.$criteria.')');
}
if (!empty($orderby)) {
$qb->orderBy($orderby, $direction);
}
$sql = $qb->getQuery()->getSql();
$pag = new Paginator($qb->getQuery());
dump($pag);
$qb->setFirstResult(0);
$qb->setMaxResults(PHP_INT_MAX);
$sql = $qb->getQuery()->getSql();
$compte = count($qb->getQuery()->getScalarResult());
return ['page' => $pag, 'compte' => $compte];
}
/**
* @param int|null $documentType
*
* @return array
*/
public function getArticleIdList($documentType = null)
{
$qb = $this->createQueryBuilder('document');
$qb->select('document.id');
if ($documentType) {
$qb->where('(document.documentType = :documentType)')
->setParameter('documentType', $documentType);
}
$compte = $qb->getQuery()->getScalarResult();
return $compte;
}

(我删除了这个问题所有不必要的方法(

将以下代码添加到要从中显示数据的实体类:

public function getId(): ?string
{
return $this->id;
}

或 如果您不希望属性"id"显示在视图中,请注释掉或删除相关实体的 Twig 模板中的代码行。例如,删除

<td>{{ Category.id }}</td>

相关内容

  • 没有找到相关文章

最新更新