以角度2注销链接

前端之家收集整理的这篇文章主要介绍了以角度2注销链接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
伙计们,
在角度2应用场景下需要你的帮助.
我有注销链接,需要在AuthService中调用方法.
<li><a [routerLink]="['/logout']"><span class="glyphicon glyphicon-log-out" aria-hidden="true"></span> logout</a></li>

AuthService中的方法

//logout
 logout() {
   this.isUserLoggedin = false;
 }

怎么做到这一点?我不想创建一个仅用于调用注销的新组件.
感谢您的帮助.

我想知道同样的事情,但我最终创建了一个带有空白模板的logoutComponent,并在此之后重定向用户登录.基于按钮的注销功能有效,但我想要一个注销路由链接.

logoutComponent.ts

@Component({
  template: ''
})

export class logoutComponent implements OnInit {

  constructor(private _authService: AuthService,private router: Router) {}

  ngOnInit() {
    this._authService.logout();
    this.router.navigate(['login']);
  }

}

app.routes.ts

{ path: 'logout',component: logoutComponent}
原文链接:/angularjs/141659.html

猜你在找的Angularjs相关文章