作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
订阅ActivatedRoute的参数时,收到错误找不到名称“Params”。我应该从哪个包导入它?
import { Component, OnInit } from '@angular/core';
import { Recipe } from '../recipe.model';
import { RecipeService } from '../../services/recipe/recipe.service';
import { ActivatedRoute } from '@angular/router';
//我在这里缺少导入。只是不知道从哪个包加载。
@Component({
selector: 'app-recipe-detail',
templateUrl: './recipe-detail.component.html',
styleUrls: ['./recipe-detail.component.css']
})
export class RecipeDetailComponent implements OnInit {
recipe: Recipe;
id: number;
constructor (
private rService: RecipeService ,
private ACTIVATED_ROUTE: ActivatedRoute,
) {
}
ngOnInit() {
const id = this.ACTIVATED_ROUTE.snapshot.params['id'];
this.ACTIVATED_ROUTE.params.subscribe(
( P: Params ) => { // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< PROBLEM LINE
this.id = +P['id'];
this.recipe = this.rService.getRecipe( this.id );
}
);
}
onAddToShopList(){
this.rService.addIngredientsToShopList( this.recipe.ingredients );
}
}
我搜索了文档: https://angular.io/guide/router我已经检查了该页面上“Params”的所有 25 个实例。我已经检查了同一页面上“导入”的所有 301 实例。任何时候都不会导入“Params”。
无需导入即可正常工作:
(P)=> {...}
这会导致错误:
(P:Params)=>{...} ?
问题是关于“P”的类型而不是 ACTIVATED_ROUTE.params
的类型,这是 Observable<Param>
.
最佳答案
缺少导入:
import { Params } from '@angular/router';
关于 Angular 2 : Cannot find name 'Params' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47703364/
我是一名优秀的程序员,十分优秀!