From dff8862c75ce37ed8c69d4462214ce0a2aae6e9b Mon Sep 17 00:00:00 2001 From: Sean Huang Date: Tue, 5 Jul 2022 18:35:05 +0800 Subject: [PATCH] feat: Add response code 400. fix: Change the parameter naming of the get method to params. --- src/api/post/index.js | 4 ++-- src/api/user/index.js | 4 ++-- src/utils/http/interceptors.js | 3 +++ 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/api/post/index.js b/src/api/post/index.js index e06f12b..d40a9a7 100644 --- a/src/api/post/index.js +++ b/src/api/post/index.js @@ -1,10 +1,10 @@ import { defAxios as request } from '@/utils/http' -export function getPosts(data = {}) { +export function getPosts(params = {}) { return request({ url: '/posts', method: 'get', - data, + params, }) } diff --git a/src/api/user/index.js b/src/api/user/index.js index 55c7c5f..b12ed7f 100644 --- a/src/api/user/index.js +++ b/src/api/user/index.js @@ -1,10 +1,10 @@ import { defAxios as request } from '@/utils/http' -export function getUsers(data = {}) { +export function getUsers(params = {}) { return request({ url: '/users', method: 'get', - data, + params, }) } diff --git a/src/utils/http/interceptors.js b/src/utils/http/interceptors.js index 843bd75..6388807 100644 --- a/src/utils/http/interceptors.js +++ b/src/utils/http/interceptors.js @@ -52,6 +52,9 @@ export function repReject(error) { * TODO 此处可以根据后端返回的错误码自定义框架层面的错误处理 */ switch (code) { + case 400: + message = message || '请求参数错误' + break case 401: message = message || '登录已过期' break