2

hero-detail.component.ts

import { Component, Input, OnInit } from '@angular/core';
import 'rxjs/add/operator/switchMap';
import { ActivatedRoute} from '@angular/router';
import {  ParamMap } from '@angular/router';
import { Location }                 from '@angular/common';
import { Hero } from '../hero';
import { HeroService } from '../services/hero.service';

@Component({
  selector: 'app-hero-detail',
  templateUrl: './hero-detail.component.html',
  styleUrls: ['./hero-detail.component.css']
})
export class HeroDetailComponent implements OnInit {

  @Input() hero: Hero;

  constructor(
    private heroService: HeroService,
  private route: ActivatedRoute,
  private location: Location
  ) { }

  ngOnInit(): void {
  this.route.paramMap
    .switchMap((params: ParamMap) =>     this.heroService.getHero(+params.get('id')))
    .subscribe(hero => this.hero = hero);
}

goBack(): void {
  this.location.back();
}

}

错误:1> node_modules/@angular/router/index"' 没有导出的成员 'ParamMap'。

2> 'ActivatedRoute' 类型上不存在属性'paramMap'。

4

5 回答 5

4

ParamMap已在4.0.0-rc.6版本中引入。确保您至少拥有 Angular 4 版本。

于 2017-07-29T11:23:24.233 回答
1

在最新版本的 angular ie 2.4.10 中获取您可以简单使用的ID

const id = +this.route.snapshot.params['id'];

于 2018-12-26T03:54:40.267 回答
0

此问题可能是角度版本冲突。您的版本可能低于 4.0.0-rc.6 此方法可能有助于解决以前的问题

在参数发送组件中添加以下行:

this.router.navigate(['profile'],{queryParams:{authdata:email}});

在参数接收组件中添加以下行:

this.route.snapshot.queryParams['authdata'];

Routermodule 的下面一行: { path:'profile', component: ProfileComponent }

于 2017-12-24T13:52:59.627 回答
0

在最新版本上,您现在可以编写:

import { ActivatedRoute } from '@angular/router';
//...
constructor(private activatedRoute: ActivatedRoute) {}
//...
ngOnInit() {
    const id = this.activatedRoute.snapshot.paramMap.get('id');
    if (id) {
        console.log ('id parameter: ', id);
    } else {
          console.log ('no id parameter');
    }
}

希望它可以提供帮助。

于 2020-02-14T06:55:43.847 回答
0

我在 Angular 教程中遇到了类似的问题,需要在 hero-detail.component.ts 中更改此代码

getHero(): void {
    const id = +this.route.snapshot.paramMap.get('id');
    this.heroService.getHero(id)
        .subscribe(hero => this.hero = hero);
}

对此:

getHero(): void {
    const id= +this.route.snapshot.params['id'];
    this.heroService.getHero(id)
      .subscribe(hero => this.hero = hero);
}
于 2020-05-01T20:12:02.933 回答