📜  路由没有在角度中使用不同的 id 刷新 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:07.227000             🧑  作者: Mango

代码示例1
const id= this.route.snapshot.paramMap.get('id');
this.router.navigateByUrl('/departments', { skipLocationChange: true }).then(() => {
    this.router.navigate([`departments/${id}/employees`]);
});