写法 路由路径 ‘ab*cd’ 将匹配 abcd 、ab_cd 、abecd 等。 src/cats/cats.controller.ts import { Controller, Get } from '@nestjs/common'; @Controller('cats') export class CatsController { @Get('ab*cd') findAll1(): string { return '测试路由通配符'; } } 效果展示 截图1 截图2 截图3