thinkpp 5.1 에서 사용자 정의 이상 처리 클래스 를 사용 하여 연결 합 니 다.

프로필 수정
config/app.php
사용자 정의 이상 연결 클래스 출처
'exception_handle' => ‘\app\common\exception\ExceptionHandle',
사용자 정의 처리 이상 방법
과인 의 저장 디 렉 터 리 는 app/common/exception 입 니 다.
ApiException.php

namespace app\common\exception;
use Exception;
class ApiException extends Exception
{	
	/**
	 *     
	 */
	public function __construct(array $ApiErrConst, Throwable $previous = null)
	{
		$code = $ApiErrConst[0];
		$message = $ApiErrConst[1];	
		parent::__construct($message, $code, $previous);
	}
}
ExceptionHandle.php

namespace app\common\exception;
use Exception;
use think\exception\Handle;
use app\common\exception\ApiException;
use app\common\err\ApiErrCode;
class ExceptionHandle extends Handle
{
	//       :JSON    
	use \app\common\traits\ResponseJson; 
	public function render(Exception $e)
	{		
		if($e instanceof ApiException) {
			$code = $e->getCode();
			$message = $e->getMessage();	
		}else{
			$code = $e->getCode();
			if(!$code || $code < 0) {
				$code = ApiErrCode::ERROR_UNKNOW[0];
			}
			$message = $e->getMessage() ? $e->getMessage() : ApiErrCode::ERROR_UNKNOW[1];
		}		
		echo $this->jsonErrorData($code,$message); //      
		//           
       // return parent::render($e); 
	}
}
오류 코드 파일
디 렉 터 리 저장:app/common/err

namespace app\common\err;
class ApiErrCode 
{
	/** 
	 * API      const     
	 * error_code < 1000
	 */	
    const ERROR_UNKNOW = [0, "    "];
    const ERROR_URL = [1, "     "];
    .......
}
복합 모듈
API 인터페이스 반환 형식
디 렉 터 리 저장:app/common/traits

namespace app\common\traits;
trait ResponseJson
{
	/**
	 * API            
	 * @author Leo 
	 */
	public function jsonErrorData($code,$message,$data = [])
	{
		return $this->jsonResponse($code, $message, $data);
	}

	/**
	 * API         
	 * @author Leo 
	 */
	public function jsonSuccessData($data = [])
	{
		return $this->jsonResponse(200, "Sucess", $data);
	}

	/**
	 *     JSON
	 * @author Leo 
	 */
	private function jsonResponse($code,$message,$data) 
	{
		$content = [
			'code' => $code,
			'msg' => $message,
			'data' => $data
		];
		return json_encode($content);
	}
}

페이지 호출

//       
use app\common\exception\ApiException;
use app\common\err\ApiErrCode;
//       :JSON    
use \app\common\traits\ResponseJson;

//   
public function index() {
	throw new ApiException(ApiErrCode::ERROR_URL);		//        
}
이 글 은 thinkpp 5.1 에서 사용자 정의 이상 처리 류 를 사용 하여 인수 하 는 것 에 관 한 글 을 소개 합 니 다.더 많은 관련 thinkpp 5.1 사용자 정의 이상 처리 류 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 바 랍 니 다!

좋은 웹페이지 즐겨찾기