symfony2 树枝渲染,抛出异常 [英] symfony2 twig render, exception thrown

查看:21
本文介绍了symfony2 树枝渲染,抛出异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以在我的基本模板中,我有: {% render "EcsCrmBundle:Module:checkClock" %}

So in my base template, I have: {% render "EcsCrmBundle:Module:checkClock" %}

然后我创建了 ModuleController.php...

Then I created the ModuleController.php...

<?php

namespace Ecs\CrmBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Ecs\CrmBundle\Entity\TimeClock;

class ModuleController extends Controller
{
    public function checkClockAction() {
        $em = $this->getDoctrine()->getEntityManager();
        $user = $this->get('security.context')->getToken()->getUser();
        $today = time();
        $start = date('Y-m-d 00:00:00');
        $entities = $em->getRepository('EcsCrmBundle:TimeClock');
        $query = $entities->createQueryBuilder('tc')
                ->select('tc.in1, tc.out1, tc.in2, tc.out2, tc.in3, tc.out3')
                ->where('tc.noteBy = :user')
                ->andWhere('tc.daydate >= :start')
                ->setParameter('user', $user->getid())
                ->setParameter('start', $start)
                ->setMaxResults('1')
                ->getQuery();
         $entities = $query->getSingleResult();
         if (empty($entities)) {
            $ents = "clocked_out";
            $this->get('session')->set('clockedin', 'clocked_out');
         } else {
            for ($i=1; $i <= 3; $i++) {
                if ($entities["in$i"] != NULL) {
                    $ents = "clocked_in";
                    if ($i == 1) {
                        $this->get('session')->set('nextclock', "out$i");
                    } else {
                        $x = $i+1;
                        $this->get('session')->set('nextClock', "out$x");
                    }
                    if ($entities["out$i"] != NULL) {
                        $ents = "clocked_out";
                        $x = $i+1;
                        $this->get('session')->set('nextclock', "in$x");
                    }
                    if ($entities["out3"] != NULL) {
                        $ents = "day_done";
                    }
                }
            }
         }
        return $this->render('EcsCrmBundle:Module:topclock.html.twig', array(
            'cstat' => $ents,
        ));
    }
}

问题是,如果特定用户的特定日期的数据库中还没有任何内容......我不断收到:

The problem is, if there is nothing in the database for the specific day for the specific user yet.. i keep getting:

An exception has been thrown during the rendering of a template ("No result was found for query although at least one row was expected.") in ::base.html.twig at line 161.
500 Internal Server Error - Twig_Error_Runtime
1 linked Exception: NoResultException »

我知道这与数据库中没有结果"的事实有关……但这不是我通过使用 if (empty($entities)) { ??我不知道修复它...任何帮助表示赞赏...

I know it has something to do with the fact that is no 'result' from the database... but isn't that what i've accomplished by having the if (empty($entities)) { ?? I have no clue to fix it... any help appreciated...

推荐答案

替换:

$entities = $query->getSingleResult();

$entity = $query->getOneOrNullResult();

如果您查看 Doctrine\ORM\AbstractQuery,您将看到 getSingleResult 期望一个且只有一个结果.0 将通过异常.

If you look in Doctrine\ORM\AbstractQuery you will see that getSingleResult expects one and only one results. 0 will through an exception.

我更仔细地查看了您的代码,看起来您实际上期望的是实体数组.在这种情况下使用:

I looked at your code a bit more closely and it looks like you actually expect an array of entities. in which case use:

$entities = $query->getResult();

这篇关于symfony2 树枝渲染,抛出异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆