使用多个请求调用同一个端点

Calling the same endpoint with multiple requests

我正在弃用旧的 API 并希望两个(或多个)请求调用同一个端点。像这样:

@Get('/request')      // call endpoint with this request
@Get('/otherRequest') // or with this request
test() {
  // do something
}

显然,另一种方法是创建另一个端点并使用服务来共享功能,但我很好奇这是否可行,因为它会使流程更容易实施。

@Get(['/request', '/otherRequest'])
test() {
  // do something
}

提示:检查 @Get() 的 TS 类型 ^^