在路径中使用转义字符表示括号。例如,使用 () 来表示括号。示例代码:
const routes: Routes = [ { path: 'item/:id\(\)', component: ItemComponent }, // ... ];
在这个示例代码中,路径 “item/:id()” 中的括号被转义为 “item/:id\(\)” 。这样,Angular 路由器就能正确地解析这个路径了。
上一篇:Angular路由器无法解析所需参数
下一篇:Angular路由器在初始加载时URL始终指向主页。