Vue3 + Nest 实现权限管理系统 后端篇(四): 生成Swagger在线文档

我们都知道在前后端分离开发中,后端是需要给前端提供接口文档的。接口文档中需要包含请求类型,传参格式,响应格式等等。而在 NestJS 中接口文档是可以集成到项目之中的,本篇文章将介绍 NestJS 如何生成 RESTFUL 接口的文档 swagger

安装使用

安装@nestjs/swagger,swagger-ui-express(底层为 express)

pnpm install --save @nestjs/swagger swagger-ui-express

然后在main.ts进行引入配置

...

import { SwaggerModule, DocumentBuilder } from '@nestjs/swagger';
async function bootstrap() {
  const app = (await NestFactory.create) < NestExpressApplication > AppModule;

  ...
  const options = new DocumentBuilder()
    .setTitle('后台管理系统') // 标题
    .setDescription('后台管理系统接口文档') // 描述
    .setVersion('1.0') // 版本
    .build();

  const document = SwaggerModule.createDocument(app, options);
  //配置swgger地址
  SwaggerModule.setup('/api/swagger', app, document);

  await app.listen(3000);
}
bootstrap();

启动项目访问http://localhost:3000/api/swagger就可以看到 swagger 界面了

image.png

接口配置

我们看到上面所有接口都是在一起没有分类的,并且也没有请求和返回参数格式等,所以我们需要对其再进行一些配置,这里就以auth/login接口为例

来到auth.controller.ts中,引入ApiOperation,ApiTags

import { Controller, Post, Body } from '@nestjs/common';
import { AuthService } from './auth.service';
import { LoginAuthDto } from './dto/login-auth.dto';
import { Public, Permissions } from 'src/public/public.decorator';
import { ApiOperation, ApiTags } from '@nestjs/swagger';

@ApiTags('登录验证模块')
@Controller('auth')
export class AuthController {
  constructor(private readonly authService: AuthService) {}
  @ApiOperation({
    summary: '登录接口', // 接口描述信息
  })

  @Public()
  @Post('login')
  login(@Body() loginAuthDto: LoginAuthDto) {
    return this.authService.login(loginAuthDto);
  }
  @Public()
  @Post('test')
  test() {
    return 1;
  }
}

刷新文档页面就可以看到我们加的分组和接口描述信息了

image.png

接下来我们再配置一下入参信息,入参信息需要在login-auth.dto.ts引入ApiProperty(定义 post 请求参数)进行配置

import { IsNotEmpty, Length } from 'class-validator';
import { ApiProperty } from '@nestjs/swagger';
export class LoginAuthDto {
  @IsNotEmpty({
    message: '用户名不能为空',
  })
  @Length(2, 10, {
    message: '用户名长度必须为2-10之间',
  })
  @ApiProperty({
    example: 'admin',
    description: '用户名',
  })

  username: string;
  @IsNotEmpty()
  @Length(5, 15, {
    message: '密码长度必须为5-15之间',
  })
  @ApiProperty({
    example: 'admin',
    description: '密码',
  })
  password: string;
}

然后再看文档页面

image.png

同时可以点击 try it out 按钮进行接口的调用

image.png

有了请求参数格式,还需要提供返回数据格式给前端,返回参数的定义可以用ApiOkResponse进行配置,如

 @ApiOkResponse({ description: '登录成功返回', type: LoginResponse })

其中LoginResponse需要我们根据具体格式自定义,这里新建一个文件定义auth模块的接口返回格式(vo/auth.vo.ts)

import { ApiProperty } from '@nestjs/swagger';

export class LoginResponse {
  @ApiProperty({ example: 200 })
  code: number;
  @ApiProperty({ example: 'eyJhbGciOiJ...' })
  data: string;
  @ApiProperty({ example: '请求成功' })
  describe: string;
}

然后在auth.controller.ts进行响应数据的配置

...

import { ApiOperation, ApiTags, ApiOkResponse } from '@nestjs/swagger';
import { LoginResponse } from './vo/auth.vo';

@ApiTags('登录验证模块')
@Controller('auth')
export class AuthController {
  constructor(private readonly authService: AuthService) {}
  @ApiOperation({
    summary: '登录接口', // 接口描述信息
  })
  @ApiOkResponse({ description: '登录成功返回', type: LoginResponse })
  @Public()
  @Post('login')
  login(@Body() loginAuthDto: LoginAuthDto) {
    return this.authService.login(loginAuthDto);
  }

}

刷新 swagge,就会看到我们定义的响应数据了

image.png

添加 jwt token

因为有些接口需要登录才能访问,所以需要在 swagger 中配置 token,其实很简单,只需要在 main.ts 再加个 addBearerAuth()函数即可

const options = new DocumentBuilder()
  .setTitle('后台管理系统') // 标题
  .setDescription('后台管理系统接口文档') // 描述
  .setVersion('1.0') // 版本
  .addBearerAuth()
  .build();

然后在需要认证的接口加上@ApiBearerAuth()装饰器即可,比如auth/test接口

  @ApiBearerAuth()
  @Post('test')
  test() {
    return 1;
  }

点击Authorization,将调用登录接口取得的 token 输入进去即可调用加了权限的接口了

1689586023641.png

调用auth/test

image.png

我们发现验证通过了。

写在最后

本篇文章介绍了 NestJS 中 Swagger 的使用,使用 Swagger 极大的方便了前后端的接口对接,同时减少了后端人员编写接口文档的时间。提高了开发效率增加了摸鱼时间。

代码仓库地址management_nest

© 版权声明
THE END
喜欢就支持一下吧
点赞0

Warning: mysqli_query(): (HY000/3): Error writing file '/tmp/MYoi3SdJ' (Errcode: 28 - No space left on device) in /www/wwwroot/583.cn/wp-includes/class-wpdb.php on line 2345
admin的头像-五八三
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

图形验证码
取消
昵称代码图片