zoukankan      html  css  js  c++  java
  • [Angular2 Router] Optional Route Query Parameters

    In this tutorial we are going to learn how to use the Angular 2 router to pass optional query parameters from one route into another route. There are couple of ways of doing this from the source route perspective: we use the queryParams property in the navigate API call, or we can use the queryParams directive.

    On the receiving side, and especially in the case of detail child routes where we want to navigate from one detail into the other, we are going to see how to use the queryParams observable to receive the navigation query parameters.

    First way, using in html:

        <a [routerLink]="hero.id"
           routerLinkActive="active"
           [queryParams]="{description: 'Starwar Hero '}"
           [routerLinkActiveOptions]="{exact: true}">{{hero.name}}</a>

    Second way, using in JS:

      getHeroByIndex(i){
       // this.router.navigateByUrl(`/heros/${i}`);
       // this.router.navigate(['heros', i]);
        this.router.navigate([i], {
          relativeTo: this.route,
          queryParams: {
            description: 'Star war Hero'
          }
        })
      }

    Read the query param:

    export class HeroComponent implements OnInit {
    
      hero: Observable<any>;
      description: string;
    
      constructor(private router: ActivatedRoute,
                  private starwarService: StarWarsService) {
    
      }
    
      ngOnInit() {
        /* this.hero = this.router.params
         .map((p:any) => p.id)
         .switchMap( id => this.starwarService.getPersonDetail(id));
         */
    
        // since herocomponent get init everytime, it would be better to use snapshot for proferemence
        const heroId = this.router.snapshot.params['id'];
        this.hero = this.starwarService.getPersonDetail(heroId);
    
        this.router.queryParams.subscribe(
          param => this.description = param['description']
        )
      }
    
    }

    In url, it looks like:

    http://localhost:4200/heros/4?description=Starwar%20Hero%20

    Github

  • 相关阅读:
    2020.10.23 19级training 补题报告
    2020.10.17 天梯赛练习 补题报告
    2020.10.16 19级training 补题报告
    2020.10.9 19级training 补题报告
    2020.10.10 天梯赛练习 补题报告
    2020.10.3 天梯赛练习 补题报告
    2020.10.2 19级training 补题报告
    第十届山东省ACM省赛复现补题报告
    VVDI Key Tool Plus Adds VW Passat 2015 Key via OBD
    Xhorse VVDI Prog Software V5.0.3 Adds Many MCUs
  • 原文地址:https://www.cnblogs.com/Answer1215/p/5917824.html
Copyright © 2011-2022 走看看