14

我在请求中抛出 NonUniqueResultException 时遇到问题

public function getLastViewUpdate($view)
{
    $qb = $this->getEntityManager()->createQueryBuilder();

    $result = $qb->select('vu')
        ->from('EasyApp\ApplicationBundle\Entity\ViewUpdate', 'vu')
        ->where('vu.view = :view')
        ->orderBy('vu.date','DESC')
        ->setParameter('view', $view)
        ->getQuery()
        ->getSingleResult();

    return $result;
}

但我不知道为什么,我可能要导入一些东西,但我找不到

CRITICAL - Uncaught PHP Exception Doctrine\ORM\NonUniqueResultException: "" at /Users/antoine/Documents/projects/easyApp/application/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php line 621 

谢谢你的帮助

4

3 回答 3

35

您可以检查getSingleResult函数的声明

/**
 * Gets the single result of the query.
 *
 * Enforces the presence as well as the uniqueness of the result.
 *
 * If the result is not unique, a NonUniqueResultException is thrown.
 * If there is no result, a NoResultException is thrown.
 *
 * @param integer $hydrationMode
 * @return mixed
 * @throws NonUniqueResultException If the query result is not unique.
 * @throws NoResultException If the query returned no result.
 */
public function getSingleResult($hydrationMode = null)
{
    ...
    if (count($result) > 1) {
        throw new NonUniqueResultException;
    }
    ...
}

解决问题 您可以使用 设置LIMIT为查询并只获得一个结果->setMaxResults(1)

于 2013-07-23T03:55:24.147 回答
8

getSingleResult如果您期望超过 1 个结果,请勿使用... 使用此函数对您的结果进行唯一性检查,这是此函数的目的。

很多选择:

  • 使用getSingleResult和处理异常(比如try {...} catch (NonUniuqueResultException $e) {...}调整你的数据库结构以避免重复,
  • 使用getSingleResult和添加setMaxResults(1),但这确实是一种信任数据库模型的奇怪方式,
  • 使用getResult并处理返回的结果。
于 2013-07-23T07:51:22.857 回答
1

这只是意味着您有两个或多个 ViewUpdates 具有相同的视图。

于 2013-07-22T22:44:48.353 回答