From 7c295b2eb43c1bf0886bdd4fb302392d34879a77 Mon Sep 17 00:00:00 2001 From: kanade Date: Fri, 22 Oct 2021 19:53:37 +0800 Subject: [PATCH] =?UTF-8?q?Content-Type=20=E9=BB=98=E8=AE=A4json=E4=BC=9A?= =?UTF-8?q?=E8=A7=A6=E5=8F=91=E8=B7=A8=E5=9F=9F=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/request/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/request/index.js b/src/request/index.js index 1d4ebc9..20e8247 100644 --- a/src/request/index.js +++ b/src/request/index.js @@ -35,7 +35,9 @@ httpService.interceptors.request.use(config => { const rqParams = filterRequestData(config.params); const rqData = filterRequestData(config.data); // post 'Content-Type' === 'application/x-www-form-urlencoded' - if(config.method === 'post' && config.headers['content-type'] === 'application/x-www-form-urlencoded') { + console.log(config.headers) + config.headers['Content-Type'] = 'application/x-www-form-urlencoded' + if(config.method === 'post') { config.data = qs.stringify(rqData); } else { config.data = rqData;