Laravel中的AppExceptionsHandler 類負(fù)責(zé)記錄應(yīng)用程序觸發(fā)的所有異常,這在我們開發(fā)過程中十分方便,總是try...catch使代碼太過繁瑣且可讀性大大降低,那么怎么使用它處理異常為json呢?
方法如下:
我們可以新建一個(gè)class,用來處理異常返回。
?php
/**
* Author: sai
* Date: 2020/1/15
* Time: 14:31
*/
namespace App\Exceptions;
class ApiException extends \Exception
{
const ERROR_CODE = 1001;
const ERROR_MSG = 'ApiException';
private $data = [];
/**
* BusinessException constructor.
*
* @param string $message
* @param string $code
* @param array $data
*/
public function __construct(string $message, string $code, $data = [])
{
$this->code = $code ? : self::ERROR_CODE;
$this->message = $message ? : self::ERROR_MSG;
$this->data = $data;
}
/**
* @return array
*/
public function getData()
{
return $this->data;
}
/**
* 異常輸出
*/
public function render($request)
{
return response()->json([
'data' => $this->getData(),
'code' => $this->getCode(),
'messgae' => $this->getMessage(),
], 200);
}
}
然后我們?cè)贖andler加入,加入$dontReport,便不會(huì)使用自帶的錯(cuò)誤處理,而使用自定義的處理。
?php
namespace App\Exceptions;
use Exception;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
class Handler extends ExceptionHandler
{
/**
* 一些不需管或不需要拋出的異常
*/
protected $dontReport = [
ApiException::class,
];
...
}
我們測試一下:
?php
namespace App\Http\Controllers;
use App\Exceptions\ApiException;
use Illuminate\Http\Request;
class HomeController extends Controller
{
public function index(Request $request)
{
throw new ApiException('error', 10001, ['oh' => 'no']);
return 1;
}
}
查看輸出:
測試ok,我們可以愉快的使用啦。當(dāng)然,其他形式的錯(cuò)誤輸出可以自行擴(kuò)展。
總結(jié)
到此這篇關(guān)于Laravel統(tǒng)一錯(cuò)誤處理為JSON的文章就介紹到這了,更多相關(guān)Laravel統(tǒng)一錯(cuò)誤處理為JSON內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- Laravel相關(guān)的一些故障解決
- composer安裝的方法步驟(圖文)
- Laravel 解決composer相關(guān)操作提示php相關(guān)異常的問題
- laravel 實(shí)現(xiàn)向公共模板中傳值 (view composer)
- 淺談laravel 5.6 安裝 windows上使用composer的安裝過程
- Laravel快速入門之composer介紹及安裝詳細(xì)圖文步驟