本文整理汇总了TypeScript中app/core/login/login-modal.service.LoginModalService类的典型用法代码示例。如果您正苦于以下问题:TypeScript service.LoginModalService类的具体用法?TypeScript service.LoginModalService怎么用?TypeScript service.LoginModalService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了service.LoginModalService类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1:
(err: any) => {
if (err instanceof HttpErrorResponse) {
if (err.status === 401) {
const principal = this.injector.get(Principal);
if (principal.isAuthenticated()) {
principal.authenticate(null);
const loginModalService: LoginModalService = this.injector.get(LoginModalService);
loginModalService.open();
} else {
const loginService: LoginService = this.injector.get(LoginService);
loginService.logout();
const router = this.injector.get(Router);
router.navigate(['/']);
}
}
}
}
开发者ID:Doha2012,项目名称:tutorials,代码行数:18,代码来源:auth-expired.interceptor.ts
示例2:
(err: any) => {
if (err instanceof HttpErrorResponse) {
if (err.status === 401 && err.url && !err.url.includes('/api/account')) {
const destination = this.stateStorageService.getDestinationState();
if (destination !== null) {
const to = destination.destination;
const toParams = destination.params;
if (to.name === 'accessdenied') {
this.stateStorageService.storePreviousState(to.name, toParams);
}
} else {
this.stateStorageService.storeUrl('/');
}
const authServer: AuthServerProvider = this.injector.get(AuthServerProvider);
authServer.logout();
const loginModalService: LoginModalService = this.injector.get(LoginModalService);
loginModalService.open();
}
}
}
开发者ID:mantonaci,项目名称:jhipster5java10,代码行数:21,代码来源:auth-expired.interceptor.ts
示例3:
(err: any) => {
if (err instanceof HttpErrorResponse) {
if (err.status === 401) {
if (this.principal.isAuthenticated()) {
this.principal.authenticate(null);
this.loginModalService.open();
} else {
this.loginService.logout();
this.router.navigate(['/']);
}
}
}
}
开发者ID:LuongUC,项目名称:SpringMVCMockProject,代码行数:13,代码来源:auth-expired.interceptor.ts
示例4:
this.router.navigate(['accessdenied']).then(() => {
// only show the login dialog, if the user hasn't logged in yet
if (!account) {
this.loginModalService.open();
}
});
开发者ID:jbbfreitas,项目名称:BestMeal,代码行数:6,代码来源:user-route-access-service.ts
注:本文中的app/core/login/login-modal.service.LoginModalService类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论