You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
647 B
35 lines
647 B
3 years ago
|
/**
|
||
|
* @description: 请求结果集
|
||
|
*/
|
||
|
export enum ResultEnum {
|
||
|
SUCCESS = 0,
|
||
|
ERROR = -1,
|
||
|
TIMEOUT = 10042,
|
||
|
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',
|
||
|
// json
|
||
|
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'
|
||
|
}
|