index.ts 196 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 /** * @description: 请求体类型 */ export enum RequestBodyTypeEnum { NONE = 'none', FORMDATA = 'form-data', XWWW = 'x-www-form-urlencoded', JSON = 'json', XML = 'xml', }