126 lines
2.5 KiB
JavaScript
126 lines
2.5 KiB
JavaScript
import { getToken, removeToken } from './storage';
|
||
|
||
const BASE_URL = 'xxxxx'
|
||
|
||
/**
|
||
* 网络请求封装
|
||
* @param {Object} options 请求参数
|
||
* @returns {Promise}
|
||
*/
|
||
const request = (options) => {
|
||
// 默认配置
|
||
const defaultOptions = {
|
||
url: '',
|
||
method: 'GET',
|
||
data: {},
|
||
header: {
|
||
'Content-Type': 'application/json' // 默认请求内容类型
|
||
}
|
||
}
|
||
|
||
// 合并配置
|
||
const config = { ...defaultOptions, ...options }
|
||
|
||
// 请求拦截:添加token等通用header
|
||
if (getToken()) {
|
||
config.header['Authorization'] = 'Bearer ' + getToken()
|
||
}
|
||
|
||
// 显示加载状态(可选)
|
||
if (options.loading !== false) {
|
||
uni.showLoading({
|
||
title: '加载中...',
|
||
mask: true
|
||
})
|
||
};
|
||
|
||
return new Promise((resolve, reject) => {
|
||
uni.request({
|
||
url: BASE_URL + config.url,
|
||
method: config.method,
|
||
data: config.data,
|
||
timeout: 10000, // 请求超时时间
|
||
header: config.header,
|
||
success: (response) => {
|
||
// 响应拦截:根据状态码处理
|
||
if (response.statusCode === 200) {
|
||
// 这里可以根据后端数据格式调整
|
||
// 例如:if (response.data.code === 0) {...}
|
||
resolve(response.data)
|
||
} else {
|
||
// 状态码错误处理
|
||
handleError(response.statusCode, response.data)
|
||
reject(response)
|
||
}
|
||
},
|
||
fail: (error) => {
|
||
// 网络错误处理
|
||
uni.showToast({
|
||
title: '网络异常,请检查网络连接',
|
||
icon: 'none',
|
||
duration: 2000
|
||
})
|
||
reject(error)
|
||
},
|
||
complete: () => {
|
||
// 隐藏加载状态
|
||
if (options.loading !== false) {
|
||
uni.hideLoading()
|
||
}
|
||
}
|
||
})
|
||
})
|
||
}
|
||
|
||
/**
|
||
* 错误处理函数
|
||
* @param {Number} statusCode HTTP状态码
|
||
* @param {Object} data 响应数据
|
||
*/
|
||
const handleError = (statusCode, data) => {
|
||
switch (statusCode) {
|
||
case 401:
|
||
uni.showModal({
|
||
title: '提示',
|
||
content: '登录已过期,请重新登录',
|
||
showCancel: false,
|
||
success: () => {
|
||
// 清除本地存储的token并跳转到登录页
|
||
removeToken()
|
||
uni.navigateTo({
|
||
url: '/pages/login/index'
|
||
})
|
||
}
|
||
})
|
||
break
|
||
case 403:
|
||
uni.showToast({
|
||
title: '没有权限访问',
|
||
icon: 'none',
|
||
duration: 2000
|
||
})
|
||
break
|
||
case 404:
|
||
uni.showToast({
|
||
title: '请求资源不存在',
|
||
icon: 'none',
|
||
duration: 2000
|
||
})
|
||
break
|
||
case 500:
|
||
uni.showToast({
|
||
title: '服务器内部错误',
|
||
icon: 'none',
|
||
duration: 2000
|
||
})
|
||
break
|
||
default:
|
||
uni.showToast({
|
||
title: data.message || '请求失败,请重试',
|
||
icon: 'none',
|
||
duration: 2000
|
||
})
|
||
}
|
||
}
|
||
|
||
export default request |