如何在不继续使用主控制器的情况下停止在afterfilter中继续?

时间:2016-04-15 07:46:55

标签: php json api cakephp serialization

我正在使用在Cakephp中呈现json格式的API。 在AppController.php我有:

public function beforeFilter() {
   $this->RequestHandler->renderAs($this, 'json');

   if($this->checkValid()) {
     $this->displayError();
   }
}
public function displayError() {
  $this->set([
     'result'     => "error",
     '_serialize' => 'result',
  ]);
  $this->response->send();
  $this->_stop();
}

但它没有显示任何内容。但是,如果它正常运行而没有停止并显示:

$this->set([
 'result'     => "error",
 '_serialize' => 'result',
]);

表现良好。

1 个答案:

答案 0 :(得分:1)

我会考虑将异常与自定义json exceptionRenderer一起使用。

if($this->checkValid()) {
  throw new BadRequestException('invalid request');
}

通过在app / Config / bootstrap.php中包含它来添加自定义异常处理程序:

/**
 * Custom Exception Handler
 */
App::uses('AppExceptionHandler', 'Lib');

 Configure::write('Exception.handler', 'AppExceptionHandler::handleException');

然后在名为app/Lib

AppExceptionHandler.php文件夹中创建一个新的自定义异常处理程序

此文件可能如下所示:

<?php

App::uses('CakeResponse', 'Network');
App::uses('Controller', 'Controller');

class AppExceptionHandler
{

    /*
     * @return json A json string of the error.
     */
    public static function handleException($exception)
    {
        $response = new CakeResponse();
        $response->statusCode($exception->getCode());
        $response->type('json');
        $response->send();
        echo json_encode(array(
            'status' => 'error',
            'code' => $exception->getCode(),
            'data' => array(
                'message' => $exception->getMessage()
            )
        ));
    }
}