拦截器
Nestjs 拦截器
拦截器是使用@Injectable()装饰器注解的类。拦截器应该实现NestInterceptor接口。
这里学习拦截器,是为了避免接口被恶意调用,而做了一个限制拦截,从请求头判断请求来源,然后做相应的响应。
- 新建一个拦截器apiverification.interceptor.ts
1 | import { Injectable,NestInterceptor,ExecutionContext,CallHandler, HttpException, HttpStatus } from '@nestjs/common' |
非本站访问时,就会返回一个json
- 本文标题:拦截器
- 本文作者:sonder
- 创建时间:2020-09-17 17:45:56
- 本文链接:https://sonderss.github.io/2020/09/17/拦截器/
评论