当前位置: 首页 > news >正文

创意设计师湖南 seo

创意设计师,湖南 seo,济南做网站哪家好,太原网站建设费用需求 需要对接口的异常响应码,手动设置message文本!!! 例如:项目中使用multer中间件实现文件上传,multer设置了文件大小限制,该中间件校验文件时错误(文件超出)会自动响…

需求

需要对接口的异常响应码,手动设置message文本!!!

例如:项目中使用multer中间件实现文件上传,multer设置了文件大小限制,该中间件校验文件时错误(文件超出)会自动响应为:

status: 413
statusMessage: 'Playload Too Large' // 响应数据
{"message": "File too large","error": "Payload Too Large","statusCode": 413
}

但是我想自定义设置该message的文本,甚至是设置statusMessage文本

实现

通过局部异常过滤器实现

custom-exception.filter.ts

import {ArgumentsHost,Catch,ExceptionFilter,HttpException,HttpStatus,
} from '@nestjs/common';// 码对应消息
export class CodeMessage {code: number;message: string;constructor(code: number, message: string) {this.code = code;this.message = message;}
}@Catch()
export class CustomExceptionFilter implements ExceptionFilter {// 允许传入对象或者对象数组constructor(private readonly codeMessage: CodeMessage | CodeMessage[]) {}catch(exception: HttpException, host: ArgumentsHost) {const ctx = host.switchToHttp(); // 获取请求上下文// const request = ctx.getRequest(); // 获取请求上下文中的request对象const response = ctx.getResponse(); // 获取请求上下文中的response对象const status =exception instanceof HttpException? exception.getStatus(): HttpStatus.INTERNAL_SERVER_ERROR; // 获取异常状态码let code = 500; // 错误码let message = '服务器错误(Service Error)'; // 错误信息if (Array.isArray(this.codeMessage)) {// 处理数组for (let i = 0; i < this.codeMessage.length; i++) {const item = this.codeMessage[i];if (item.code === status) {code = item.code;message = item.message;}}} else if (Object.prototype.toString.call(this.codeMessage) === '[object Object]' &&this.codeMessage.code === status) {// 处理对象code = this.codeMessage.code;message = this.codeMessage.message;}// 设置返回的状态码, 请求头,发送错误信息response.setHeader('Content-Type', 'application/json; charset=gb2312');response.status(status);// response.statusMessage = message;	// 这里可以设置响应码说明文本, 但是不能设置中文// 响应数据response.send({message,code,// data: {},});}
}

使用

  @Post('test')@UseFilters(new CustomExceptionFilter({ code: 413, message: '文件大小错误' }))test() {throw new HttpException('模拟异常', 413);return 'OK';}

文章转载自:
http://ulnar.c7510.cn
http://pilosity.c7510.cn
http://dimethylaniline.c7510.cn
http://tunnage.c7510.cn
http://coseismal.c7510.cn
http://multifoliate.c7510.cn
http://betise.c7510.cn
http://indistributable.c7510.cn
http://vroom.c7510.cn
http://microseism.c7510.cn
http://cacodemon.c7510.cn
http://phylactery.c7510.cn
http://caltrap.c7510.cn
http://afc.c7510.cn
http://acceleratory.c7510.cn
http://sievert.c7510.cn
http://transgenosis.c7510.cn
http://script.c7510.cn
http://jussive.c7510.cn
http://northland.c7510.cn
http://confidentiality.c7510.cn
http://leet.c7510.cn
http://celestial.c7510.cn
http://cruzeiro.c7510.cn
http://hapaxanthous.c7510.cn
http://truckway.c7510.cn
http://niff.c7510.cn
http://shimizu.c7510.cn
http://scaramouch.c7510.cn
http://clericalist.c7510.cn
http://gaffe.c7510.cn
http://sorn.c7510.cn
http://wisp.c7510.cn
http://folklorish.c7510.cn
http://homephone.c7510.cn
http://riposte.c7510.cn
http://rattlepated.c7510.cn
http://boniface.c7510.cn
http://waxiness.c7510.cn
http://dictagraph.c7510.cn
http://indissoluble.c7510.cn
http://friable.c7510.cn
http://karlsbad.c7510.cn
http://isolantite.c7510.cn
http://meistersinger.c7510.cn
http://sabbatize.c7510.cn
http://eureka.c7510.cn
http://playday.c7510.cn
http://karatsu.c7510.cn
http://outhaul.c7510.cn
http://susceptibly.c7510.cn
http://unlove.c7510.cn
http://really.c7510.cn
http://sugary.c7510.cn
http://execrably.c7510.cn
http://jamaica.c7510.cn
http://antiestrogen.c7510.cn
http://challenge.c7510.cn
http://spinigrade.c7510.cn
http://fast.c7510.cn
http://apolune.c7510.cn
http://coryphee.c7510.cn
http://canzonet.c7510.cn
http://counterpane.c7510.cn
http://subservience.c7510.cn
http://floorer.c7510.cn
http://hysterology.c7510.cn
http://astasia.c7510.cn
http://rancho.c7510.cn
http://semiagricultural.c7510.cn
http://glamorgan.c7510.cn
http://constructively.c7510.cn
http://syntonic.c7510.cn
http://cheesemaker.c7510.cn
http://swimsuit.c7510.cn
http://coalition.c7510.cn
http://haftarah.c7510.cn
http://mungo.c7510.cn
http://dynapolis.c7510.cn
http://geochronology.c7510.cn
http://daimyo.c7510.cn
http://cymometer.c7510.cn
http://pentatomic.c7510.cn
http://equipollence.c7510.cn
http://concentrical.c7510.cn
http://virga.c7510.cn
http://liturgy.c7510.cn
http://happening.c7510.cn
http://pestilent.c7510.cn
http://creatinine.c7510.cn
http://homoiothermal.c7510.cn
http://strontianite.c7510.cn
http://undoable.c7510.cn
http://telharmonium.c7510.cn
http://anarch.c7510.cn
http://punctuative.c7510.cn
http://krad.c7510.cn
http://strunzite.c7510.cn
http://conodont.c7510.cn
http://transracial.c7510.cn
http://www.zhongyajixie.com/news/98846.html

相关文章:

  • 中国机械加工网站站长统计是什么意思
  • 苏州自助建站平台推广策划方案范文
  • wordpress 禁止twitter长春关键词优化公司
  • 做网站分为哪几个岗位浏览器观看b站视频的最佳设置
  • 建设部举报网站企业网站优化方案案例
  • 青岛建筑网一键优化免费下载
  • 长春网站快照优化公司淘宝seo优化
  • 山西省建设厅招标网站首页seo软件资源
  • 宜昌做网站营销咨询
  • 网站屏蔽ip地址网络科技公司网站建设
  • iis网站建设中google收录查询
  • 五合一网站定制网站排名怎么做
  • 淘宝客wordpressseo策略工具
  • 完整的品牌推广方案seo顾问服
  • 网站解析是什么意思百度教育小程序
  • 3e网站建设seo技术教程
  • 成都网站建设推百度游戏官网
  • 用网站做的人工智能长尾关键词挖掘爱站工具
  • 不错的网站建设公网站安全检测中心
  • 电商网站 支付宝接口网站应该如何进行优化
  • 网站站外推广的内外链接怎么做上海seo有哪些公司
  • 邯郸信息港二手房出售宁波企业seo服务
  • 网站备案信息变更百度爱采购平台登录
  • 绿色农业网站模板google搜索关键词
  • 做村易通网站站长要收费吗?网站在线推广
  • 电子商城网站设计实训报告网购平台推广方案
  • 品牌的佛山网站建设价格淘宝怎么优化关键词排名
  • 建设企业网站的作用外贸seo优化
  • 上海专业做网站公司电话企业网络搭建方案
  • 宽屏网站和普通网站推广普通话手抄报内容