Angular 使用总结路由

Posted chenyingzuo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Angular 使用总结路由相关的知识,希望对你有一定的参考价值。

常常需要切换多页面,因此需要路由

 

1.定义一份文件,专门用来配置各个路径跳转后的组件,一个组件就代表一个页面

import { NgModule }             from ‘@angular/core‘;
import { RouterModule, Routes } from ‘@angular/router‘;
import { SimpleTestComponent } from ‘./simple-test/simple-test.component‘;
import { MyTestComponent } from ‘./my-test/my-test.component‘;

const routes: Routes = [
    { path: ‘‘, redirectTo: ‘/simple‘, pathMatch: ‘full‘ },
    { path: ‘simple‘, component: SimpleTestComponent },
    { path: ‘test/:myParam‘, component: MyTestComponent },
];

@NgModule({
    imports: [RouterModule.forRoot(routes)],
    exports: [RouterModule]
})
export class AppRoutingModule { }

 

2. app module 里面引用它

技术图片

 

 3. 根页面放置一个路由元素及一些跳转的测试链接

技术图片

 

 

4. 现在可以切换页面

技术图片

 

 技术图片

 

 

注:页面可以获取跳转过来传递的参数:

技术图片

 

 参数名定义注意一下:

技术图片

 

以上是关于Angular 使用总结路由的主要内容,如果未能解决你的问题,请参考以下文章

angularJS使用ocLazyLoad实现js延迟加载

Angular1组件通讯方式总结

Angular 使用总结路由

Angular2中的路由(简单总结)

angular 路由router的用法总结

json 可视代码工作室Angular with Firebase片段