当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript auth.service.AuthService类代码示例

本文整理汇总了TypeScript中src/app/services/auth.service.AuthService的典型用法代码示例。如果您正苦于以下问题:TypeScript service.AuthService类的具体用法?TypeScript service.AuthService怎么用?TypeScript service.AuthService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了service.AuthService类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: constructor

 constructor(private auth: AuthService) {
   auth.handleAuthentication();
 }
开发者ID:arturobarbaro,项目名称:angularUdemy,代码行数:3,代码来源:navbar.component.ts

示例2: ngOnInit

 ngOnInit() {
   if (this.auth.userProfile) {
     this.profile = this.auth.userProfile;
   } else {
     this.auth.getProfile((err, profile) => {
       this.profile = profile;
     });
   }
 }
开发者ID:arturobarbaro,项目名称:angularUdemy,代码行数:9,代码来源:protegida.component.ts

示例3: ngOnInit

  ngOnInit() {

    this.authService.currentUserAsP()
    .then( (current) => this.authService.getUser(current.uid).pipe(first()).toPromise())
    .then( (user: User) => {
      this.authService.setCurrentUser(user);
      return this.companyService.retriveCompany(user.companyId).pipe(first()).toPromise();
    }).then((company) => {
      this.companyService.setCompany(company);
    })
    .catch((error) => console.log(error));




  }
开发者ID:adolfolopez88,项目名称:Store,代码行数:16,代码来源:shell.component.ts

示例4:

 x => {
   this.status = this.authservice.getLogin();
 }
开发者ID:littlestrong26,项目名称:RealWorld,代码行数:3,代码来源:header.component.ts

示例5: logOut

 logOut() {
   this.authService.logOut();
 }
开发者ID:darekodz,项目名称:angular-app,代码行数:3,代码来源:auth.component.ts

示例6: logIn

 logIn(value) {
   this.authService.logIn(value);
 }
开发者ID:darekodz,项目名称:angular-app,代码行数:3,代码来源:auth.component.ts

示例7: logout

 logout(){
     this.auth.logout();
 }
开发者ID:arturobarbaro,项目名称:angularUdemy,代码行数:3,代码来源:navbar.component.ts

示例8: login

 login(){
     this.auth.login();
 }
开发者ID:arturobarbaro,项目名称:angularUdemy,代码行数:3,代码来源:navbar.component.ts

示例9:

 .then( (user: User) => {
   this.authService.setCurrentUser(user);
   return this.companyService.retriveCompany(user.companyId).pipe(first()).toPromise();
 }).then((company) => {
开发者ID:adolfolopez88,项目名称:Store,代码行数:4,代码来源:shell.component.ts


注:本文中的src/app/services/auth.service.AuthService类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。