mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
fix(http): 修复 http 配置错误
This commit is contained in:
parent
63a4d2ea87
commit
b3a0ea73af
@ -21,7 +21,6 @@ const ContentType = {
|
|||||||
*/
|
*/
|
||||||
const alovaInstance = createAlova({
|
const alovaInstance = createAlova({
|
||||||
baseURL: BASE_URL,
|
baseURL: BASE_URL,
|
||||||
localCache: null, // 设置为null即可全局关闭全部请求缓存
|
|
||||||
...AdapterUniapp({
|
...AdapterUniapp({
|
||||||
/* #ifndef APP-PLUS */
|
/* #ifndef APP-PLUS */
|
||||||
mockRequest: isUseMock() ? mockAdapter : undefined, // APP 平台无法使用mock
|
mockRequest: isUseMock() ? mockAdapter : undefined, // APP 平台无法使用mock
|
||||||
@ -62,7 +61,7 @@ const alovaInstance = createAlova({
|
|||||||
throw new Error(`请求错误[${code}]:${message}`);
|
throw new Error(`请求错误[${code}]:${message}`);
|
||||||
}
|
}
|
||||||
// 处理http状态错误
|
// 处理http状态错误
|
||||||
handleHttpStatus(statusCode, message || '');
|
handleHttpStatus(statusCode, errMsg || '');
|
||||||
throw new Error(`HTTP请求错误[${statusCode}]:${errMsg}`);
|
throw new Error(`HTTP请求错误[${statusCode}]:${errMsg}`);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user