美文网首页
hf3.0使用枚举类

hf3.0使用枚举类

作者: geeooooz | 来源:发表于2023-07-31 11:02 被阅读0次

转载自 “自如出博客” 地址:https://www.ziruchu.com/art/654
第一步:安装组件

composer require hyperf/constants
第二步:生成枚举类

php bin/hyperf.php gen:constant PostStatusCode
该命令会在 app/Constants 目录下生成 PostStatusCode.php 文件。

第三步:编写生成的枚举类

<?php

declare(strict_types=1);

namespace App\Constants;

use Hyperf\Constants\AbstractConstants;
use Hyperf\Constants\Annotation\Constants;

#[Constants]
class PostStatusCode extends AbstractConstants
{
   /**
    * @Message("草稿")
    */
   const DRAFT = 1;

   /**
    * @Message("发布")
    */
   const PUBLISHED = 2;
}

第四步:定义 API 异常类

1、定义异常 Handler

<?php

namespace App\Exception\Handler;


use App\Constants\ErrorCode;
use App\Constants\PostStatusCode;
use App\Exception\ApiException;
use Hyperf\ExceptionHandler\ExceptionHandler;
use Hyperf\HttpMessage\Stream\SwooleStream;
use Psr\Http\Message\ResponseInterface;
use Throwable;

class ApiExceptionHandler extends ExceptionHandler
{
   public function handle(Throwable $throwable, ResponseInterface $response)
   {
       if ($throwable instanceof ApiException) {
           $data = json_encode([
               'code'    => $throwable->getCode(),
               // 通过状态码获取枚举信息
               'message' => PostStatusCode::getMessage($throwable->getCode()),
           ], JSON_UNESCAPED_UNICODE);


           $this->stopPropagation();

           return $response->withStatus(500)->withBody(new SwooleStream($data));
       }

       return $response;
   }

   public function isValid(Throwable $throwable): bool
   {
       return true;
   }
}

2、定义异常

<?php

namespace App\Exception;

use Hyperf\Server\Exception\ServerException;
class ApiException extends ServerException
{
}

3、注册异常

<?php
// config/autoload/exceptions.php
   
declare(strict_types=1);

return [
   'handler' => [
       'http' => [
           Hyperf\HttpServer\Exception\Handler\HttpExceptionHandler::class,
           App\Exception\Handler\AppExceptionHandler::class,
           // 添加 API 异常
           \App\Exception\Handler\ApiExceptionHandler::class,
       ],
   ],
];

第五步:控制器使用枚举类

<?php
// App\Controller\demo\TestController.php

use App\Constants\PostStatusCode;
   
#[GetMapping('/test/error')]
public function error(RequestInterface $request)
{
   $status = (int) $request->input('status', 1);

   $code = match ($status) {
       1 => PostStatusCode::DRAFT,
       2 => PostStatusCode::PUBLISHED,
       default => PostStatusCode::DRAFT,
   };

   throw new ApiException(PostStatusCode::getMessage($code), $code);
}

第六步:测试

$ curl http://192.168.31.90:9501/test/error?status=1
{"code":1,"message":"草稿"}
$ curl http://192.168.31.90:9501/test/error?status=2
{"code":2,"message":"发布"}

相关文章

  • Java高级-枚举类与注解

    10.1.枚举类的使用: 入门 类的对象只有有限个,确定的 自定义枚举类 一.枚举类的使用1.枚举类的理解: 类的...

  • 枚举

    如何定义枚举类 什么枚举类:类里的对象是有限个,可以枚举出来 如何使用enum定义枚举类 枚举...

  • Java篇-枚举的使用

    一 : 自定义枚举类 枚举类调用 二 : 使用enum关键字定义枚举类 让枚举类实现接口: 可以让不同的枚举类的对...

  • Chapter 8 . 枚举

    阅读原文 Chapter 8 . 枚举 8.1 枚举类 主要内容: 如何自定义枚举类 如何使用enum定义枚举类 ...

  • Java枚举类笔记

    一、枚举类的使用 枚举类的理解:类的对象只有有限个,确定的。称此类为枚举类 当需要定义一组常量时,强烈建议使用枚举...

  • SpringBoot 入门笔记(七)自定义枚举类型

    定义枚举类 在抛出异常中使用枚举类型 异常处理类中接受枚举类型

  • 枚举--java24(02/17/2016)

    如何自定义枚举类如何使用enum定义枚举类、枚举类的主要方法实现接口的枚举类 JDK1.5之前需要自定义枚举类JD...

  • Python 面向对象高级编程

    使用__slots__ 使用@property 多重继承 定制类 使用枚举类 使用元类

  • Kotlin面向对象 (6)枚举类

    枚举类构造函数枚举常用属性和函数 kotlin 中使用 enum 和 class 两个关键词声明枚举类。 枚举类使...

  • Java核心类-枚举类

    Java 进阶——枚举enum使用小结及使用枚举替代你的常量类 通过enum定义的枚举类,和其他的class没有任...

网友评论

      本文标题:hf3.0使用枚举类

      本文链接:https://www.haomeiwen.com/subject/gleepdtx.html