fix: 修复路径匹配失败
All checks were successful
CI Monitor MIflow / build-image (push) Successful in 37s

This commit is contained in:
zhaoyingbo 2024-07-30 09:49:31 +00:00
parent 091fcb2aed
commit cc84b59f78

View File

@ -1,9 +1,12 @@
export const makeCheckPathTool = (url: string, prefix?: string) => {
const { pathname } = new URL(url)
const makePath = (path: string) => `${prefix || ""}${path}`
return {
// 精确匹配
exactCheck: (path: string) => pathname === `${prefix}${path}`,
exactCheck: (path: string) => {
return pathname === makePath(path)
},
// 前缀匹配
startsWithCheck: (path: string) => pathname.startsWith(`${prefix}${path}`),
startsWithCheck: (path: string) => pathname.startsWith(makePath(path)),
}
}