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


TypeScript AuthService.getPayload方法代码示例

本文整理汇总了TypeScript中ng2-ui-auth.AuthService.getPayload方法的典型用法代码示例。如果您正苦于以下问题:TypeScript AuthService.getPayload方法的具体用法?TypeScript AuthService.getPayload怎么用?TypeScript AuthService.getPayload使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ng2-ui-auth.AuthService的用法示例。


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

示例1: isClientRole

 isClientRole() {
     if (this.auth.getPayload().data.role_id == 10) {
         return true;
     } else {
         return false;
     }
 }
开发者ID:megamtech,项目名称:angular-php-framework,代码行数:7,代码来源:authentication.service.ts

示例2: getUserDetails

 getUserDetails() {
     var userDetails = this.auth.getPayload();
     if (typeof userDetails !== 'undefined') {
         this.user = userDetails.data;
     } else {
         return false;
     }
 }
开发者ID:megamtech,项目名称:angular-php-framework,代码行数:8,代码来源:authentication.service.ts

示例3:

 complete: () => {
     this.expiration = this.auth.getExpirationDate();
     this.user = this.auth.getPayload();
 }
开发者ID:royipressburger,项目名称:ng2-ui-auth-example,代码行数:4,代码来源:main.component.ts

示例4: ngOnInit

 ngOnInit() {
     this.user = this.auth.getPayload();
     this.expiration = this.auth.getExpirationDate();
     this.secret = this.http.get('/secret').map(response => response.text());
 }
开发者ID:royipressburger,项目名称:ng2-ui-auth-example,代码行数:5,代码来源:main.component.ts

示例5: getUserRole

 getUserRole() {
     //        if (typeof this.user == 'undefined') {
     //            this.getUserDetails();
     //        }
     return this.auth.getPayload().data.role_id;
 }
开发者ID:megamtech,项目名称:angular-php-framework,代码行数:6,代码来源:authentication.service.ts

示例6: getUserName

 getUserName() {
     //        if (typeof this.user == 'undefined') {
     //            this.getUserDetails();
     //        }
     return this.auth.getPayload().data.username;
 }
开发者ID:megamtech,项目名称:angular-php-framework,代码行数:6,代码来源:authentication.service.ts

示例7: ngOnInit

 ngOnInit() {
     this.user = this.auth.getPayload();
     this.expiration = this.auth.getExpirationDate();
 }
开发者ID:megamtech,项目名称:angular-php-framework,代码行数:4,代码来源:user.service.ts


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