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


TypeScript router-store.go函数代码示例

本文整理汇总了TypeScript中@ngrx/router-store.go函数的典型用法代码示例。如果您正苦于以下问题:TypeScript go函数的具体用法?TypeScript go怎么用?TypeScript go使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1:

		  .map(entity => {
			  if (!entity) {
				  this.store.dispatch(go(['404']));
				  return false;
			  }
			  return entity.Role === 'Administrators';
		  });
开发者ID:starlest,项目名称:edemy-frontend,代码行数:7,代码来源:admin.guard.ts

示例2:

		  .map(entities => {
			  if (!entities || !entities[id]) {
				  this.store.dispatch(go(['404']));
				  return false;
			  }
			  return true;
		  });
开发者ID:starlest,项目名称:edemy-frontend,代码行数:7,代码来源:lesson-exists.guard.ts

示例3: ngOnInit

 ngOnInit() {
     this.translate.get('authorize_btn').subscribe(value => {
         this.store.dispatch({ type: BreadcrumbActions.BREADCRUMBS_UPDATED, payload: [{ title: value, navigationLink: '' }] });
     });
     if (this.vkservice.hasValidSession()) {
         this.store.dispatch(go(['dialogs']));
     }
 }
开发者ID:Le0Michine,项目名称:Messanger,代码行数:8,代码来源:login.component.ts

示例4:

 return this.store.let(fromRoot.getIsLogged).do(v => {
   if (v) return;
   if (localStorage.getItem('refreshToken')) {
     this.store.dispatch(new authAction.RefreshAction(replace(url)));
   }
   else {
     console.log('auth failed');
     this.store.dispatch(go('/auth'));
   }
 });
开发者ID:csongysun,项目名称:HJPT.f,代码行数:10,代码来源:auth.service.ts

示例5:

 this.vkservice.auth().subscribe(() => {
     console.log('authorization completed, go to dialogs');
     this.store.dispatch(go(['dialogs']));
 });
开发者ID:Le0Michine,项目名称:Messanger,代码行数:4,代码来源:login.component.ts

示例6:

		return this.store.select(fromRoot.getAuthEntity).map(entity => {
			if (!entity) this.store.dispatch(go(['home']));
			return !!entity
		});
开发者ID:starlest,项目名称:edemy-frontend,代码行数:4,代码来源:not-logged-in.guard.ts

示例7: canActivate

 canActivate() {
     if (window.localStorage.getItem(VKConsts.userDenied) === 'true' || !this.login.hasValidSession()) {
         this.store.dispatch(go(['authorize']));
     }
     return true;
 }
开发者ID:Le0Michine,项目名称:Messanger,代码行数:6,代码来源:authorization.guard.ts


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