详解Angular4 路由设置相关

前端之家收集整理的这篇文章主要介绍了详解Angular4 路由设置相关前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.路由相关配置

路由类设置

/导入RouterModule,Routes类型/
import { RouterModule,Routes } from '@angular/router';
import { LoginComponent } from "./login/login.component";

/定义路由const表示不可改变/
const routers: Routes = [
/
path:字符串,表示默认登入,path为路径 /login component:组件
component:组件
pathMatch:为字符串默认为前缀匹配 "prefix"; "full" 为完全匹配。
redirectTo:指向为路径,既path
outlet:字符串,路由目标,面对多个路由的情况
children:Routes 子路由相关
/
{ path: '',component: LoginComponent },// path:路径 /detail/1 :id代表参数相关
{ path: 'detail/:id',// 懒加载子模块,子模块需要配置路由设置启动子组件,如果这样设置了路由,需要在子模块中再定义路由
{ path: 'other',loadChildren:"./demo/demo.module#demoModule" },// 重定向,路径为 表示不能识别的路径信息,重定向到相关路径下
{ path: '
',pathMatch: 'full',redirectTo: '' }
];

/将路由设置导出,子模块中的路由使用 forChild 而不是 forRoot/
export const appRouter = RouterModule.forRoot(routers);

ngModule设置

组件模板设置

2.多路由处理

访问 /news/ 时同时加载 NewsComponent News2Cmponent 两个组件

3.路有链接以及组件中调用路由方法使用

routerLinkActive="active" 即在本路由激活时添加样式 .active

或者:

其中:navigateByUrl 方法指向完整的绝对路径

4.路由守卫(适用于后台管理等需要登录才能使用的模块)

@Injectable()
export class AuthService implements CanActivate {
canActivate() {
// 这里判断登录状态,返回 true 或 false
return true;
}
}

在路由配置中的设置

5.退出守卫(适合于编辑器修改后的保存提示等场景)

// CanDeactivateComponent 是定义的接口,见下段代码
import { CanDeactivateComponent } from './can-deactivate.omponent';

@Injectable()
export class DeacService implements CanDeactivate {
canDeactivate(
canDeactivateComponent: CanDeactivateComponent,activatedRouteSnapshot: ActivatedRouteSnapshot,routerStateSnapshot: RouterStateSnapshot
) {
// 目标路由和当前路由
console.log(activatedRouteSnapshot);
console.log(routerStateSnapshot);

// 判断并返回
return canDeactivateComponent.canDeactivate ? canDeactivateComponent.canDeactivate() : true

}
}

..

Observable | Promise | boolean; }

路由配置

模块中添加服务

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/js/36827.html

猜你在找的JavaScript相关文章