中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • web開發 > 
  • 小白入門angular-cli的第一次旅程(學習目標 1.路由的基礎知識 在路由時傳遞數據)

小白入門angular-cli的第一次旅程(學習目標 1.路由的基礎知識 在路由時傳遞數據)

發布時間:2020-06-14 21:27:26 來源:網絡 閱讀:397 作者:伊伊吖吖 欄目:web開發

第一篇文里學習了在路由的基礎知識,了解了路由5個對象Routes,RouterLink,RouterOutlet,Router的寫法,這篇文里來學習如何在路由時傳遞數據, 還有如何使用ActivatedRoute的使用方法 

    傳遞數據方式主要有3種,說明:

            第一種:在查詢參數中傳遞數據

                          /product?id=1&name=2  =>  ActivatedRoute.queryParams[id]  

            第二種:在路由路徑中傳遞數據

                           {  path:  /product/:id  } =>/product/1 => ActivatedRoute.params[id]

            第三種:在路由配置中傳遞數據

·                            { path: /product, component: ProductComponent, data:[{ isProd:true }]}  =>  ActivatedRoute.data[0][isProd]


            一.在查詢參數中傳遞數據

                步一:在app.component.html中

                           <a [routerLink] = "['/product']"  [queryParams] = "{id:1}">產品ID</a>

                 步二:在product.component.ts中接收參數 

                            import {ActivatedRoute} from '@angular/router';

                            export class ProductComponent implements OnInit {

                                private productId : number ;

                             constructor( private routerInfo : ActivatedRoute ){    }

                                ngOnInit() {

                                      this.productId  = this.routerInfo.snapshot.queryparams["id"] ;

                                 }

                            }

                    步三:在product.component.html中

                               <p>產品Id是:{{productId}}</p>

            二.在路由路徑中傳遞數據

                   步一:在app-routing.module.ts

                              {  path : ' product / : id  ',  component : ProductComponent  }      

                    步二:在app.component.html中

                                <a [routerLink] = "['/product',1]">商品詳情</a>  

                    步三:在product.component.ts中

                                import {ActivatedRoute} from '@angular/router';

                                export class ProductComponent implements OnInit {

                                 private productId : number

                                 constructor( private routerInfo : ActivatedRoute ){   }

                                        ngOnInit() {

                                      this.productId = this.routerInfo.snapshot.params["id"]

                                          }

                                  }

 

    

    


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

太湖县| 文成县| 三门县| 宣武区| 平山县| 横山县| 罗定市| 吉安市| 高青县| 山阴县| 铜川市| 扶绥县| 阜南县| 玉龙| 新余市| 阳泉市| 桐梓县| 定南县| 贺兰县| 阿拉善盟| 遂平县| 定州市| 桂林市| 盐源县| 科技| 藁城市| 乌鲁木齐县| 阿拉善右旗| 合江县| 福贡县| 昌都县| 犍为县| 横山县| 桐柏县| 龙岩市| 伊金霍洛旗| 辽源市| 栾城县| 英吉沙县| 六盘水市| 托克逊县|