From 0e43ca5e828884725b3eba2929a7413ac038c916 Mon Sep 17 00:00:00 2001 From: "dong.ai" Date: Sun, 14 Sep 2025 12:01:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=AF=B7=E6=B1=82=E5=A4=B4?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/httpAjax.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/httpAjax.js b/src/api/httpAjax.js index b4941afd..59b36c61 100644 --- a/src/api/httpAjax.js +++ b/src/api/httpAjax.js @@ -102,7 +102,7 @@ const get = function (baseURL, url) { baseURL, url: url, method: 'get', - headers: {'Content-Type': 'application/json;charset=utf-8'} + headers: {'Content-Type': 'application/json'} }) } @@ -120,7 +120,7 @@ const post = function (baseURL, url, postData) { url: url, method: 'post', data: postData, - headers: {'Content-Type': 'application/json;charset=utf-8'} + headers: {'Content-Type': 'application/json'} }) } //post请求