日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Angular路由——子路由

發布時間:2023/12/10 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Angular路由——子路由 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

一、子路由語法:

二、實例

在商品詳情頁面,除了顯示商品id信息,還顯示了商品描述,和銷售員的信息。

通過子路由實現商品描述組件和銷售員信息組件展示在商品詳情組件內部。

1、新建2個組件修改其內容

ng g component productDesc ng g component sellerInfo

重點是修改銷售員信息組件,顯示銷售員ID。

import { Component, OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router';@Component({selector: 'app-seller-info',templateUrl: './seller-info.component.html',styleUrls: ['./seller-info.component.css'] }) export class SellerInfoComponent implements OnInit {private sellerId: number;constructor(private routeInfo: ActivatedRoute) { }ngOnInit() {this.sellerId = this.routeInfo.snapshot.params["id"];}}

2、修改路由配置

給商品組件加上子路由

const routes: Routes = [{ path: '', redirectTo : 'home',pathMatch:'full' }, //路徑為空{ path: 'home', component: HomeComponent },{ path: 'product/:id', component: ProductComponent, children:[{ path: '', component : ProductDescComponent },{ path: 'seller/:id', component : SellerInfoComponent }] },{ path: '**', component: Code404Component } ];

3、修改product.component.ts的模版

注意:routerLink里要配置成./,不能再用/。

<p>這里是商品信息組件 </p> <p>商品id是: {{productId}} </p><a [routerLink]="['./']">商品描述</a> <a [routerLink]="['./seller',99]">銷售員信息</a> <router-outlet></router-outlet>

效果:

主路由是/product/2,子路由為空字符串:

主路由的商品詳情組件顯示出來了,子路由的空字符串對應的商品描述組件也顯示出來了。

點銷售員信息鏈接:

URL路徑變成:http://localhost:4201/product/2/seller/99。

子路由seller/99,對應的sellerInfo組件也展示出來。

?

注意:

1、插座router-out形成父子關系,可以無限嵌套

2、所有的路由信息都是在模塊層,在app.routing.module.ts中配置的。

路由信息都是在模塊層,所有的組件本身,并不知道任何跟路由相關的信息。

?

插座之間的父子關系——子路由。

插座之間的兄弟關系——輔助路由。

?

本文作者starof,因知識本身在變化,作者也在不斷學習成長,文章內容也不定時更新,為避免誤導讀者,方便追根溯源,請諸位轉載注明出處:http://www.cnblogs.com/starof/p/9006207.html?有問題歡迎與我討論,共同進步。

轉載于:https://www.cnblogs.com/starof/p/9006207.html

總結

以上是生活随笔為你收集整理的Angular路由——子路由的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。