时间:2021-05-26
可拦截系统的返回的状态自己在单独处理。
使用查询
composer require betterde/response// 安装后直接调用以下# storedreturn stored($data, $message = '创建成功'); #updatedreturn updated($data, $message = '更新成功'); #deletedreturn deleted($message = '删除成功'); #acceptedreturn accepted($message = '请求已接受,等待处理'); #notFoundreturn notFound($message = '您访问的资源不存在'); #internalErrorreturn internalError($message = '未知错误导致请求失败'); #failedreturn failed($message, $code = Response::HTTP_BAD_REQUEST); #successreturn success($data); #messagereturn message($message, $code = Response::HTTP_OK); #respondreturn respond($data = [], $message = '请求成功', array $header = []);拦截代码
App\Exceptions\Handler<?php namespace App\Exceptions; use Exception;use Illuminate\Support\Facades\Log;use Illuminate\Database\QueryException;use App\Traits\Response\InterfaceResponse;use Illuminate\Auth\AuthenticationException;use Illuminate\Validation\ValidationException;use Illuminate\Auth\Access\AuthorizationException;use Illuminate\Database\Eloquent\ModelNotFoundException;use Symfony\Component\HttpKernel\Exception\HttpException;use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;use Symfony\Component\HttpKernel\Exception\UnauthorizedHttpException; /** * 异常处理 * * Date: 21/03/2018 * @author George * @package App\Exceptions */class Handler extends ExceptionHandler{ use InterfaceResponse; /** * 定义不需要记录的异常类 * * @var array */ protected $dontReport = [ HttpException::class, ValidationException::class, ModelNotFoundException::class, AuthorizationException::class, AuthenticationException::class, ]; /** * A list of the inputs that are never flashed for validation exceptions. * * @var array */ protected $dontFlash = [ 'password', 'password_confirmation', ]; /** * 定义需要记录的异常 * * Date: 21/03/2018 * @author George * @param Exception $exception * @return mixed|void * @throws Exception */ public function report(Exception $exception) { parent::report($exception); } /** * 拦截异常并生成对应的响应内容 * * Date: 21/03/2018 * @author George * @param \Illuminate\Http\Request $request * @param Exception $exception * @return \Illuminate\Contracts\Routing\ResponseFactory|\Symfony\Component\HttpFoundation\Response */ public function render($request, Exception $exception) { // 拦截数据库操作异常// if ($exception instanceof QueryException) {// Log::error($exception);// return $this->internalError();// } // 拦截一般异常并生成响应 if ($exception instanceof GeneralException) { return failed($exception->getMessage(), $exception->getCode() ?: 500); } // 拦截404异常 if ($exception instanceof ModelNotFoundException) { return $this->notFound(); } // 拦截授权异常 if ($exception instanceof AuthorizationException) { return failed('您无权访问', 403); } // 参数验证错误的异常,我们需要返回 400 的 http code 和一句错误信息 if ($exception instanceof ValidationException) { return failed(array_first(array_collapse($exception->errors())), 422); } // 用户认证的异常,我们需要返回 401 的 http code 和错误信息 if ($exception instanceof UnauthorizedHttpException) { return failed('未提供Token', 401); } // 捕获404异常 if ($exception instanceof NotFoundHttpException) { return $this->notFound(); } return parent::render($request, $exception); } /** * 认证失败后抛出异常 * * Date: 2018/5/27 * @author George * @param \Illuminate\Http\Request $request * @param AuthenticationException $exception * @return \Illuminate\Http\JsonResponse|\Illuminate\Http\Response */ public function unauthenticated($request, AuthenticationException $exception) { return failed('身份认证失败', 401); }}以上这篇Laravel 框架返回状态拦截代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Laravel框架简介:Laravel是一套简洁、优雅的PHPWeb开发框架(PHPWebFramework)。它可以让你从面条一样杂乱的代码中解脱出来;它可以
laravel框架中默认的validate验证,在处理错误的时候,默认是返回上一页,当为ajax的时候才会返回Json。如果我们要一直返回Json的话,那么需要
一、框架版本说明laravel5.5laravel-admin1.7.5二、表格日期筛选使用后端调用代码$grid->filter(function(Grid\
最新在学习laravel,用到了session,因为laravel没法用$_SESSION所以只能用框架的session。贴上代码$team_id]);Sess
前言今天在整理laravel的练习项目时,发现自己的代码结构中有很多重复的代码。于是搜索了一下laravel框架的代码复用机制。知道了Trait的存在,于是学习