美文网首页
路由基本使用

路由基本使用

作者: 2764906e4d3d | 来源:发表于2019-01-17 21:32 被阅读0次

使用Anglar Router导航

  1. 路由基础,路由相关对象
  • Routes 路由配置,保存着url对应展示哪个组件,以及在哪个RouterOutlet中展示组件
  • RouterOutlet 在HTML中标记路由内容呈现位置的占位符指令
  • Router 负责在运行时执行路由对象,可以通过调用其navigate()和navigateByUrl()方法来导航到一个指令的路由
  • RouterLink在HTML中声明路由导航用的指令
  • ActivatedRoute 当前激活路由对象,保存路由信息,如路由地址,路由参数
  1. 新建一个路由项目,并生成一个home组件和一个product组件

ng new router –routing
ng g component home
ng g component product

  1. 会额外生成一个app-routing-module.ts模块,在主模块的import会导入一个AppRoutingModule,在路由模块中配置路由
import {HomeComponent} from './home/home.component'
import {ProductComponent} from './product/product.component'
const routes: Routes = [
  {path:'',component:HomeComponent},
  {path:'product',component:ProductComponent}
];
  1. 使用路由进行导航()表示事件绑定,表示绑定click事件(类似vue的@)
<a [routerLink]="['/']">主页</a>
<a [routerLink]="['/product']">商品详情</a>
<input type="button" value="商品详情" (click)="toProductDetails()">
<router-outlet></router-outlet>
  1. 使用绑定的click跳转路由
export class AppComponent {
  title = 'route';
  constructor(private router:Router) {
    
  }
  toProductDetails() {
    this.router.navigate(['/product'])
  }
}
  1. 通过这样的配置,当用户访问不存在的地址时,页面显示code404组件的内容(在设置这个路由时,要把这个通配符的路由放到最后,因为它是最通用的路由,只有当路由匹配不到时,才能够让其匹配)
{path:'**',component:Code404Component},

在路由时传递数据

  1. 在查询参数中传递数据,/product?id=1&name=2通过ActivatedRoute.queryParams[id],获取id的值
  • 在商品详情组件中接收主界面传递的商品的id
<a [routerLink]="['/product']" [queryParams]="{id:1}">商品详情</a>
export class ProductComponent implements OnInit {
  private  productId:number
  constructor( private routeInfo:ActivatedRoute){
    
  }
  ngOnInit(){
    this.productId=this.routeInfo.snapshot.queryParams["id"]  }
}
  1. 在路由的路径中传递数据,{path:/product/:id} => /product/1,ActivatedRoute.params[id]获取id
<a [routerLink]="['/product',1]">商品详情</a>
export class ProductComponent implements OnInit {
  private  productId:number
  constructor( private routeInfo:ActivatedRoute){

  }
  ngOnInit(){
    this.productId=this.routeInfo.snapshot.params["id"]  }
}
  • 参数快照snapshot,这个方法的弊端是只有在组件在被创建时才会被调用一次,如果其他路径也会定位到这个组件中时,点击原本的导航将不会改变获取的id可以通过参数订阅来解决,将ngOnInit修改
this.routeInfo=this.subscribe((params:Params)=>this.productId=params["id"])
  1. 在路由配置中传递数据,{path:'product',component:ProductComponent,data:[{isProd:true}]},ActivatedRoute.data[0][isProd]来获取isProd的值

重定向路由

  • 在用户访问一个特定的地址时,将其重定向到另一个指定地址
const routes: Routes = [
  {path:'',redirectTo:'/home',pathMatch:'full'},
  {path:'home',component:HomeComponent},
  {path:'product',component:ProductComponent},
  {path:'**',component:Code404Component},

];

相关文章

  • 2018-11-22

    路由的基本使用 1 路由的基本使用2 再路由注册再跟实例的时候我们可以全局的访问路由,this.$router或者...

  • vue-router

    前端路由的基本原理 vue-router的基本使用 命名路由 路由参数 嵌套路由

  • Day13 - Flutter - 路由导航

    概述 路由管理 路由基本使用 命名路由使用(重点) 页面跳转的拓展 一、路由管理 1.1、认识Flutter路由路...

  • angualr(二) 路由之angualr-router

    创建项目 路由的基本使用 路由对象图示 路由基本配置 路由通配符配置 HTML里面跳转链接 在js里面跳转路由 路...

  • 路由基本使用

    使用Anglar Router导航 路由基础,路由相关对象 Routes 路由配置,保存着url对应展示哪个组件,...

  • 五月下--vue 路由和脚手架

    vue路由 vue2.0路由基本使用: 一:基本使用: 1. 布局主页 2. 路由具体写法 //组件 (就是一个大...

  • react从0到1的探索记录04

    18、React中的路由 React中路由的基本使用 在react中使用路由首先需要安装react的路由模块 np...

  • 路由

    认识路由 什么是路由 ​ 路由是一套完成映射规则 路由的基本使用 使用的步骤 ​ 1.首先引入vu...

  • Vue-router(路由)

    基本使用 创建路由的简单案例演示 路由的使用步骤1.引入js文件 2.定义(注册)路由跳转的组件----使用全局扩...

  • Angular学习笔记(四)Angular Router 导航

    学习路由基本知识学习子路由、保护路由、辅助路由等 一、创建路由项目 使用 ng new xxx --routing...

网友评论

      本文标题:路由基本使用

      本文链接:https://www.haomeiwen.com/subject/hzdwdqtx.html