fix(nirax): Normalize path (#8877)

This commit is contained in:
tamaina 2022-06-24 01:26:15 +09:00 committed by Johann150
parent 252ab3d852
commit 3ab54fd534
Signed by untrusted user: Johann150
GPG key ID: 9EE6577A2A06F8F1

View file

@ -35,7 +35,7 @@ function parsePath(path: string): ParsedPath {
wildcard, wildcard,
optional, optional,
}); });
} else { } else if (part.length !== 0) {
res.push(part); res.push(part);
} }
} }
@ -85,9 +85,11 @@ export class Router extends EventEmitter<{
if (_DEV_) console.log('Routing: ', path, queryString); if (_DEV_) console.log('Routing: ', path, queryString);
const _parts = path.split('/').filter(part => part.length !== 0);
forEachRouteLoop: forEachRouteLoop:
for (const route of this.routes) { for (const route of this.routes) {
let parts = path.split('/'); let parts = [ ..._parts ];
const props = new Map<string, string>(); const props = new Map<string, string>();
pathMatchLoop: pathMatchLoop: