📜  角度导航到具有不同参数的相同路线 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:15.752000             🧑  作者: Mango

代码示例1
openCategory(id: any, rev: any) {
    this.router.navigateByUrl('/', { skipLocationChange: true })
      .then(() => this.router.navigate(['/category/' + id + '/' + rev]));
  }