mirror of
https://github.com/ialley-workshop-open/uni-halo.git
synced 2026-09-12 16:40:40 +08:00
eb44980484
1. 新增首页精选分类配置类型定义与逻辑,支持自定义首页分类展示顺序 2. 移除冗余的qs导入与注释代码,简化请求参数处理 3. 修复瞬间详情页悬浮操作的渲染问题与收藏按钮样式 4. 优化文章卡片的头像处理与分类跳转逻辑 5. 重构数据加载组件,新增尺寸配置与样式优化 6. 为分类文章页添加排序切换功能,支持默认/置顶/最新/最旧排序 7. 优化首页分类模块的加载状态与数据获取逻辑,添加延迟模拟 8. 统一API文件的导入格式与代码风格
80 lines
2.1 KiB
TypeScript
80 lines
2.1 KiB
TypeScript
import type { CustomRequestOptions } from '@/http/types';
|
|
import { useTokenStore } from '@/store';
|
|
import { getEnvBaseUrl } from '@/utils';
|
|
import { stringifyQuery } from './tools/queryString';
|
|
// import qs from 'qs'
|
|
|
|
// 请求基准地址
|
|
const baseUrl = getEnvBaseUrl();
|
|
|
|
// 拦截器配置
|
|
const httpInterceptor = {
|
|
// 拦截前触发
|
|
invoke(options: CustomRequestOptions) {
|
|
// 如果您使用了alova,则请把下面的代码放开注释
|
|
// alova 执行流程:alova beforeRequest --> 本拦截器 --> alova responded
|
|
// return options
|
|
|
|
// 非 alova 请求,正常执行
|
|
// 接口请求支持通过 query 参数配置 queryString
|
|
|
|
|
|
if (options.query) {
|
|
// const queryStr = qs.stringify(options.query, {
|
|
// allowDots: true,
|
|
// encodeValuesOnly: true,
|
|
// skipNulls: true,
|
|
// encode: true,
|
|
// arrayFormat: 'repeat'
|
|
// })
|
|
|
|
const queryStr = stringifyQuery(options.query)
|
|
if (options.url.includes('?')) {
|
|
options.url += `&${queryStr}`;
|
|
} else {
|
|
options.url += `?${queryStr}`;
|
|
}
|
|
}
|
|
|
|
// 非 http 开头需拼接地址
|
|
if (!options.url.startsWith('http')) {
|
|
// #ifdef H5
|
|
if (JSON.parse(import.meta.env.VITE_APP_PROXY_ENABLE)) {
|
|
// 自动拼接代理前缀
|
|
options.url = import.meta.env.VITE_APP_PROXY_PREFIX + options.url;
|
|
} else {
|
|
options.url = baseUrl + options.url;
|
|
}
|
|
// #endif
|
|
// 非H5正常拼接
|
|
// #ifndef H5
|
|
options.url = baseUrl + options.url;
|
|
// #endif
|
|
// TIPS: 如果需要对接多个后端服务,也可以在这里处理,拼接成所需要的地址
|
|
}
|
|
// 1. 请求超时
|
|
options.timeout = 60000; // 60s
|
|
// 2. (可选)添加小程序端请求头标识
|
|
options.header = {
|
|
...options.header
|
|
};
|
|
// 3. 添加 token 请求头标识
|
|
const tokenStore = useTokenStore();
|
|
const token = tokenStore.updateNowTime().validToken;
|
|
|
|
if (token) {
|
|
options.header.Authorization = `Bearer ${token}`;
|
|
}
|
|
return options;
|
|
}
|
|
};
|
|
|
|
export const requestInterceptor = {
|
|
install() {
|
|
// 拦截 request 请求
|
|
uni.addInterceptor('request', httpInterceptor);
|
|
// 拦截 uploadFile 文件上传
|
|
uni.addInterceptor('uploadFile', httpInterceptor);
|
|
}
|
|
};
|