@nestjs/common APIs
- Module
- Injectable
- Controller
- Get
- Post
- Inject
- INestApplication
- Body
- Logger
- ExecutionContext
- DynamicModule
- Param
- UseGuards
- Query
- Provider
- HttpStatus
- ValidationPipe
- Global
- Type
- UnauthorizedException
- HttpException
- CanActivate
- SetMetadata
- Delete
- BadRequestException
- NotFoundException
- Req
- Res
- UseInterceptors
- Catch
- ArgumentsHost
- createParamDecorator
- OnModuleInit
- ExceptionFilter
- Put
- CallHandler
- NestInterceptor
- Request
- HttpCode
- ForbiddenException
- Scope
- ModuleMetadata
- PipeTransform
- OnModuleDestroy
- Patch
- LoggerService
- MiddlewareConsumer
- ArgumentMetadata
- applyDecorators
- RequestMethod
- NestMiddleware
- InternalServerErrorException
- UploadedFile
- UsePipes
- ConflictException
- forwardRef
- ParseIntPipe
- NestModule
- CustomDecorator
- HttpModule
- Optional
- UseFilters
- ClassSerializerInterceptor
- OnApplicationShutdown
- HttpService
- Header
- FactoryProvider
- NotAcceptableException
- Response
- Redirect
- OnApplicationBootstrap
- DefaultValuePipe
- Headers
- flatten
- Render
- ParseArrayPipe
- INestApplicationContext
- INestMicroservice
- ContextType
- ServiceUnavailableException
- mixin
- ParamData
- CacheTTL
- NotImplementedException
- UploadedFiles
- ValidationPipeOptions
- WebSocketAdapter
- ForwardReference
- CacheModule
- ValueProvider
- ValidationError
- ImATeapotException
- Sse
- All
- Next
- ParseBoolPipe
- HttpServer
- IntrospectionResult
- ShutdownSignal
- NestHybridApplicationOptions
- Paramtype
- UnsupportedMediaTypeException
- StreamableFile
- LogLevel
- Ip
- UnprocessableEntityException
- RpcExceptionFilter
- Session
- NestApplicationOptions
- BadGatewayException
- CACHE_MANAGER
- ParseUUIDPipe
Other Related APIs
@nestjs/common#Ip TypeScript Examples
The following examples show how to use
@nestjs/common#Ip.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: weather.controller.ts From life-helper-backend with MIT License | 6 votes |
/**
* 用于未登录状态获取天气详情
*/
@Get(['public', 'common', ''])
getWeather(@Ip() ip: string, @User('id') userId: number, @Query() query: GetWeatherQueryDto): Promise<MixedWeather> {
const location = query.location
const cityId = query.city_id
return this.weatherMainService.getWeather({ ip, userId, location, cityId })
}
Example #2
Source File: ip.controller.ts From life-helper-backend with MIT License | 5 votes |
@Get('')
async queryIp(@Query() query: QueryIpQueryDto, @Ip() ip: string) {
const queriedIp = query.ip ? query.ip : ip
const ipInfo = await this.ipService.queryIp(queriedIp)
return { ...ipInfo, clientIp: ip }
}