Skip to content

Commit

Permalink
feat: axios supports form-data format requests
Browse files Browse the repository at this point in the history
  • Loading branch information
anncwb committed Feb 24, 2021
1 parent 5cc9488 commit c41fa75
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.zh_CN.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Wip

### ✨ Features

- axios 支持 form-data 格式请求

### ⚡ Performance Improvements

- 登录界面动画优化
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"@types/mockjs": "^1.0.3",
"@types/nprogress": "^0.2.0",
"@types/qrcode": "^1.4.0",
"@types/qs": "^6.9.5",
"@types/rollup-plugin-visualizer": "^2.6.0",
"@types/sortablejs": "^1.10.6",
"@types/yargs": "^16.0.0",
Expand Down Expand Up @@ -101,7 +102,7 @@
"vite-plugin-mock": "^2.1.5",
"vite-plugin-purge-icons": "^0.7.0",
"vite-plugin-pwa": "^0.5.3",
"vite-plugin-style-import": "^0.7.4",
"vite-plugin-style-import": "^0.7.5",
"vite-plugin-theme": "^0.4.8",
"vite-plugin-windicss": "0.4.12",
"vue-eslint-parser": "^7.5.0",
Expand Down
23 changes: 23 additions & 0 deletions src/utils/http/axios/Axios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import { cloneDeep } from 'lodash-es';
import type { RequestOptions, CreateAxiosOptions, Result, UploadFileParams } from './types';
import { errorResult } from './const';
import { ContentTypeEnum } from '/@/enums/httpEnum';
import qs from 'qs';
import { RequestEnum } from '../../../enums/httpEnum';

export * from './axiosTransform';

Expand Down Expand Up @@ -144,6 +146,25 @@ export class VAxios {
});
}

// support form-data
supportFormData(config: AxiosRequestConfig) {
const headers = this.options?.headers;
const contentType = headers?.['Content-Type'] || headers?.['content-type'];

if (
contentType !== ContentTypeEnum.FORM_URLENCODED ||
!Reflect.has(config, 'data') ||
config.method?.toUpperCase() === RequestEnum.GET
) {
return config;
}

return {
...config,
data: qs.stringify(config.data),
};
}

request<T = any>(config: AxiosRequestConfig, options?: RequestOptions): Promise<T> {
let conf: AxiosRequestConfig = cloneDeep(config);
const transform = this.getTransform();
Expand All @@ -156,6 +177,8 @@ export class VAxios {
if (beforeRequestHook && isFunction(beforeRequestHook)) {
conf = beforeRequestHook(conf, opt);
}

conf = this.supportFormData(conf);
return new Promise((resolve, reject) => {
this.axiosInstance
.request<any, AxiosResponse<Result>>(conf)
Expand Down
14 changes: 7 additions & 7 deletions windi.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ export default defineConfig({
theme: {
extend: {
colors,
},
screens: {
sm: '576px',
md: '768px',
lg: '992px',
xl: '1200px',
'2xl': '1600px',
screens: {
sm: '576px',
md: '768px',
lg: '992px',
xl: '1200px',
'2xl': '1600px',
},
},
},
});
Expand Down
20 changes: 15 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1446,6 +1446,11 @@
dependencies:
"@types/node" "*"

"@types/qs@^6.9.5":
version "6.9.5"
resolved "https://registry.npmjs.org/@types/qs/-/qs-6.9.5.tgz#434711bdd49eb5ee69d90c1d67c354a9a8ecb18b"
integrity sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ==

"@types/[email protected]":
version "1.17.1"
resolved "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6"
Expand Down Expand Up @@ -3567,6 +3572,11 @@ es-module-lexer@^0.3.26:
resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.3.26.tgz#7b507044e97d5b03b01d4392c74ffeb9c177a83b"
integrity sha512-Va0Q/xqtrss45hWzP8CZJwzGSZJjDM5/MJRE3IXXnUCcVLElR9BRaE9F62BopysASyc4nM3uwhSW7FFB9nlWAA==

es-module-lexer@^0.4.0:
version "0.4.0"
resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.4.0.tgz#21f4181cc8b7eee06855f1c59e6087c7bc4f77b0"
integrity sha512-iuEGihqqhKWFgh72Q/Jtch7V2t/ft8w8IPP2aEN8ArYKO+IWyo6hsi96hCdgyeEDQIV3InhYQ9BlwUFPGXrbEQ==

es-to-primitive@^1.2.1:
version "1.2.1"
resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
Expand Down Expand Up @@ -8930,15 +8940,15 @@ vite-plugin-pwa@^0.5.3:
pretty-bytes "^5.5.0"
workbox-build "^6.1.0"

vite-plugin-style-import@^0.7.4:
version "0.7.4"
resolved "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-0.7.4.tgz#999d8930db67ff0b3786bca25187cc1dc734befa"
integrity sha512-a9f44QXEz7D/YLmykkK1Oif9IOOsqfHZRjsaNBwpWdcF7zfL4OE93Z8Xm++Qm+jUuHLuo9BGcfDAwY7+ObxRkQ==
vite-plugin-style-import@^0.7.5:
version "0.7.5"
resolved "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-0.7.5.tgz#da0455fd79e273767e84ead66e96b82a10cc891c"
integrity sha512-0jdP+fnt/duEmpS6gaI5yfLNUNF2KIDcQIzWAH4w1R+fwK98Zt3F+UZprIQAlreRCD+WDLPJJ/M4ECeqKzCtUQ==
dependencies:
"@rollup/pluginutils" "^4.1.0"
change-case "^4.1.2"
debug "^4.3.2"
es-module-lexer "^0.3.26"
es-module-lexer "^0.4.0"
magic-string "^0.25.7"

vite-plugin-theme@^0.4.8:
Expand Down

0 comments on commit c41fa75

Please sign in to comment.