symfony2中对异常的处理,个人总结

习惯了之前的出现错误,就立即解决的方式。现在在用symfony的用法,发现原来自己一直错过了一个东西:Exception

现在讲讲symfony2中如何处理错误

1.首先自己在src/AppBundle下建立了一个Exception的文件夹,

BaseException.php的异常基类
 
namespace AppBundle\Exception;  class BaseException extends \Exception {  /**  * 未登录错误  */  const ERROR_CODE_UNLOGIN = 1001;   /**  * 没有权限错误  */  const ERROR_CODE_NO_AUTHORITY = 1002;   /**  * 参数错误  */  const ERROR_CODE_ILLEGAL_PARAMETER = 2001;   /**  * 未知错误  */  const ERROR_CODE_UNKNOWN = 5000;   /**  * 服务器内部错误  */  const ERROR_CODE_INTERNAL = 5001; }
这里还需要对其进行赋值
 
NoAuthorityException.php
namespace Material\Exception;

/**
 * 无权限异常类
 *
 */
class NoAuthorityException extends BaseException
{
    function __construct($message)
    {
        parent::__construct($message, BaseException::ERROR_CODE_NO_AUTHORITY);
    }
}
UnLoginException.php
namespace Material\Exception;

/**
 * 未登录异常类
 *
 */
class UnLoginException extends BaseException
{
    function __construct($message)
    {
        parent::__construct($message, BaseException::ERROR_CODE_UNLOGIN);


2.建一个EventListener文件-》 ExceptionListener.php

 
<?php  namespace Material\EventListener;  use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent;  class ExceptionListener {   public function onKernelException(GetResponseForExceptionEvent $event)  {  $request = $event->getRequest();  $exceptionListener = null;   $exceptionListener = new AjaxExceptionListener();   $exceptionListener->onKernelException($event);  }  }

3.建一个EventListener文件-》 AjaxExceptionListener.php

 
<?php  namespace Material\EventListener;  use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent;  class AjaxExceptionListener extends ExceptionListener {   public function onKernelException(GetResponseForExceptionEvent $event)  {  $exception = $event->getException();   $response = new JsonResponse(array(  'status' => $exception->getCode(),  'msg' => $exception->getMessage(),  ));  $event->setResponse($response);  } }

这样的话有错误,我们就可以进行抛出错误,最后在Event进行监听,处理。

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值