Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在练习 Angular 2,并配置了一个输入密码的按钮和一个正确的按钮以重定向到第二页。我配置了路由,但我不知道该怎么做才能对其进行验证然后重定向。
我目前在下面进行了配置,但我无法单击按钮,我想重定向到第二页。
为什么你同时拥有 routerLink 并单击同一个按钮。您可以改为将 routerLink 移动到代码中
validarpass(pass:number) { ..... this.router.navigate(['/component-one']); }
将路由器注入您的构造函数,如下所示
constructor(private router:Router){ ...}