我有重定向功能的奇怪行为
路线是:
{path:'order/:number/quotation/validate', component: OrderCreatedValidationMenuComponent, canActivate: [AuthGuard]},
在HTML页面中,这很好用:
<a [routerLink]="['/order/' + order.number + '/quotation/validate']" >Quotation</a>
在组件中,这不起作用:
import {Router} from "@angular/router";
...
this.router.navigate(['/order/' + this.order.number + '/quotation/validate']);
重定向到:
http://localhost:4200/?param1=1¶m2=1¶m3=1#/order/161012-MM-4/quotation/validate