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

This commit is contained in:
zhaoyingbo 2024-07-30 09:37:03 +00:00
parent 012fa97e8b
commit 091fcb2aed

View File

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