nest.js-学习记录:3、使用swagger自动生成接口文档

1、安装
下载swagger

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

按照官网的介绍进行配置
main.ts文件

import { NestFactory } from '@nestjs/core';
import { SwaggerModule, DocumentBuilder } from '@nestjs/swagger';
import { AppModule } from './app.module';

async function bootstrap() {
  const app = await NestFactory.create(AppModule);

  const config = new DocumentBuilder()
   // 标题
    .setTitle('NestJs博客API')
    // 描述
    .setDescription('我的第一个NestJs项目')
    // 版本
    .setVersion('1.0')
    //标签
    .addTag('cats')
    .build();
  const document = SwaggerModule.createDocument(app, config);
   // 接口文档路径
  SwaggerModule.setup('api-docs', app, document);
  // 监听端口号3000
  await app.listen(3000);
}
bootstrap();

2、添加标签

import { Controller, Get, Post } from '@nestjs/common';
import { ApiOperation, ApiTags } from '@nestjs/swagger';

@Controller('posts')
//添加标签
@ApiTags('帖子')
export class PostsController {
  @Get()
  //添加描述
  @ApiOperation({summary:'显示博客列表'})
  index() {
    return [
      {id:1111},
      {id:13},
      {id:14},
      {id:1},
      {id:37},
      {id:26},
    ];
  }

  @Post()
  create(){
    return{
      success:true
    }
  }

  @Get(':id')
  detail(){
    return{
      id:1,
      title:'aaaaa'
    }
  }
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

言只 石皮

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值