- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经创建了一个 AuthGuard 服务并为其实现了 CanLoad 接口(interface),如下所示
import { Injectable } from '@angular/core';
import { CanLoad, Router } from '@angular/router';
@Injectable({
providedIn: 'root'
})
export class AuthGuard implements CanLoad {
constructor(private router: Router) { }
canLoad() {
if (localStorage.getItem('isLoggedin')) {
return true;
}
this.router.navigate(['/auth/login']);
return false;
}
}
下面是我的应用路由模块
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { AuthGuard } from './shared/guard/auth.guard';
const routes: Routes = [
{ path: '', loadChildren: './layout/layout.module#LayoutModule', canLoad: [AuthGuard] },
{ path: 'auth', loadChildren: './auth/auth.module#AuthModule' },
{ path: 'not-found', loadChildren: './not-found/not-found.module#NotFoundModule' },
{ path: '**', redirectTo: 'not-found' }
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
当我检查浏览器网络选项卡时,没有文件正在下载,我看到一个空白的白页,以下是我在浏览器中看到的警告
platform-browser.js:613 Throttling navigation to prevent the browser from hanging. See https://crbug.com/882238. Command line switch --disable-ipc-flooding-protection can be used to bypass the protection
最佳答案
问题终于解决了,只需要按如下路线重新排序
const routes: Routes = [
{ path: 'auth', loadChildren: './auth/auth.module#AuthModule' },
{
path: '', loadChildren: './layout/layout.module#LayoutModule', canLoad: [AuthGuard],
},
{ path: 'not-found', loadChildren: './not-found/not-found.module#NotFoundModule' },
{ path: '**', redirectTo: 'not-found' }
];
关于Angular7 : CanLoad Auth guard hangs browser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55919120/
文档说我不能同时使用这两个功能 https://angular.io/docs/ts/latest/guide/router.html#!#canload-blocks-preload 如果用户被授权
我遇到了一种奇怪的行为(或者可能是一种被通缉的行为)。我有一个 Angular 应用程序,其中所有模块都是延迟加载的。 在一个模块上,我有一个守卫检查来自 JWT 的解码用户是否是系统管理员。如果是这
This question有这个例子: { path: 'admin', loadChildren: 'app/admin/admin.module#AdminModule',
我有来自 BE 的权限 DTO,它决定了用户可以访问的应用程序部分。 使用 NgRx 选择器我想在 CanLoad 守卫中使用它,但我无法让它工作。 路线.ts { path: 'acquisit
我已经创建了一个 AuthGuard 服务并为其实现了 CanLoad 接口(interface),如下所示 import { Injectable } from '@angular/core'; i
如果我使用延迟加载并为“CanLoad”定义了一个保护。是否需要“CanActivate”?就像一个模块可能被有效加载但是用户做了一些使“CanLoad”无效的事情但是因为它被加载了用户可以通过Can
我不知道这是否是一个好习惯。但以下是我想要做的: 我有2个懒加载模块:ManagementModule和ConfigurationModule,路由配置如下: const routes: Routes
我有一个 Angular 2.0.1(最终版)应用,它使用 HashLocationStrategy 作为路线导航策略。 我定义了一条路线如下: { path: 'shiftmanag
canLoad 和 canActivate 有什么区别? export interface Route { path?: string; pathMatch?: string; match
我已经为延迟加载的状态添加了一个canLoad 守卫。我遇到的问题是,如果使用 router.navigate() 从不同的状态初始化状态,我无法获得任何路由参数。 所以这是我的路线配置: path:
我是一名优秀的程序员,十分优秀!