Angular 6 router link issue in the same page
问题 I have two links: ['/productlist',1000] ['/productlist',1001] These two links are on the same page. If I click on any link for the first time. It is redirecting to the page, but if I click on the other link it is not working. component.html code <a class="dropdown-item" (click)="GetProductList(subitem.SubCategoryID)"> <i class="mdi mdi-chevron-right" aria-hidden="true"></i> {{ subitem.SubCategoryName}} </a> GetProductList(SubCategoryID){ this.router.navigate(['/productlist',SubCategoryID]); }