问题2(SKU 无法自动合并,GBIU017 案例)四处叠加根因修复: - 人工标签旧词「热转印」被封闭词表静默踢出合并矩阵 → CRAFT_TAG_ALIASES 别名归一为「烫画」(矩阵归因与 CUSTOM 标签同路径生效) - updateTags 缺任一定价维度组即整链掉出矩阵且人工接管后永不恢复 → 缺啥补啥(按链接名派生补齐,人工勾选值不动,响应带 filledDimensionTags) - autoGroup 只建新族从不并入已有族(产生 USIU005-2 类碎片)→ 并入已有 autoManaged 同款族优先,无匹配才新建;同款仅人工锁定族则跳过并报告 - 名称回退分组键含物流备注,包邮/不包邮永不同组 → 新增族语义键 familyNameKey(国家+品名+SKU),api/admin 两侧同构,合并默认勾选随之修复 附加: - updateTags 后未归族链接自动并入匹配族(attachToMatchingFamily,响应带 attachedFamilyId) - 整理新增碎片族合并 consolidateFragments:纯碎片族并入带商品族并删除 (保公开 goodId=族ID 稳定),带商品/覆盖价/人工锁定进人工复审报告 - admin:保存标签提示补齐明细,整理完成消息含并入/碎片合并/待人工数 问题1(后台频繁 Unauthorized 掉线): - refresh cookie path '/auth' 与代理前缀(/api、/v2-api)不匹配导致浏览器 永远带不上 refresh cookie → 两 cookie path 统一为 '/' - v2 构建基址带尾斜杠 + 手工拼接产生 /v2-api//auth/refresh 双斜杠 404 → request.ts 规范拼接 测试:api jest 187/187、admin vitest 22/22、双侧 tsc 0 错误; public.service 夹具改为自包含(不依赖共享库既有数据)。
85 lines
2.6 KiB
TypeScript
85 lines
2.6 KiB
TypeScript
import axios from 'axios'
|
|
import type { AxiosInstance, AxiosResponse, AxiosError, InternalAxiosRequestConfig } from 'axios'
|
|
import { ElMessage } from 'element-plus'
|
|
import router from '@/router'
|
|
|
|
const request: AxiosInstance = axios.create({
|
|
baseURL: import.meta.env.VITE_API_BASE || '/api',
|
|
timeout: 30000,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
// Session tokens live in HttpOnly cookies — send them along.
|
|
withCredentials: true,
|
|
})
|
|
|
|
// Response interceptor
|
|
request.interceptors.response.use(
|
|
(response: AxiosResponse) => {
|
|
// Backend wraps everything in { data, success } — unwrap to data
|
|
const body = response.data
|
|
if (body && typeof body === 'object' && 'success' in body && 'data' in body) {
|
|
return body.data
|
|
}
|
|
return body
|
|
},
|
|
async (error: AxiosError) => {
|
|
// Access token expired: try the refresh cookie once, then retry the
|
|
// original request. A second 401 (refresh failed) logs the user out.
|
|
const config = error.config as (InternalAxiosRequestConfig & { _retried?: boolean }) | undefined
|
|
if (
|
|
error.response?.status === 401 &&
|
|
config &&
|
|
!config._retried &&
|
|
!config.url?.includes('/auth/login') &&
|
|
!config.url?.includes('/auth/refresh')
|
|
) {
|
|
config._retried = true
|
|
try {
|
|
// 规范拼接:VITE_API_BASE 可能带尾斜杠(如 /v2-api/),直接相加会产生
|
|
// /v2-api//auth/refresh 双斜杠导致 404
|
|
const base = (import.meta.env.VITE_API_BASE || '/api').replace(/\/+$/, '')
|
|
await axios.post(
|
|
`${base}/auth/refresh`,
|
|
{},
|
|
{ withCredentials: true },
|
|
)
|
|
return request.request(config)
|
|
} catch {
|
|
// fall through to the 401 handling below
|
|
}
|
|
}
|
|
|
|
if (error.response) {
|
|
const { status, data } = error.response
|
|
|
|
switch (status) {
|
|
case 401:
|
|
ElMessage.error('Unauthorized, please login')
|
|
router.push('/login')
|
|
break
|
|
case 403:
|
|
ElMessage.error('Forbidden')
|
|
break
|
|
case 404:
|
|
ElMessage.error('Resource not found')
|
|
break
|
|
case 500:
|
|
ElMessage.error('Server error')
|
|
break
|
|
default:
|
|
const errorMessage = (data as any)?.message || 'Request failed'
|
|
ElMessage.error(errorMessage)
|
|
}
|
|
} else if (error.request) {
|
|
ElMessage.error('Network error')
|
|
} else {
|
|
ElMessage.error('Request failed')
|
|
}
|
|
|
|
return Promise.reject(error)
|
|
}
|
|
)
|
|
|
|
export default request
|