export enum ResultEnum { SUCCESS = 200, ERROR = 500, OVERDUE = 401, UNSAFETY = 402, FORBIDDEN = 403, EXPIRED = 405, ERRAUTH = 406, ERRGLOBALLOADDING = 407, ERRIP = 408, ERRDOMAIN = 409, TIMEOUT = 20000, TYPE = 'success', } /** * @description:请求方法 */ export enum RequestEnum { GET = 'GET', POST = 'POST', PATCH = 'PATCH', PUT = 'PUT', DELETE = 'DELETE', } /** * @description:常用的contentTyp类型 */ export enum ContentTypeEnum { // json JSON = 'application/json;charset=UTF-8', // text TEXT = 'text/plain;charset=UTF-8', // form-data 一般配合qs FORM_URLENCODED = 'application/x-www-form-urlencoded;charset=UTF-8', // form-data 上传 FORM_DATA = 'multipart/form-data;charset=UTF-8', }