我正在使用在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',
]);
表现良好。
答案 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()
)
));
}
}