3

我是一个新手,试图从 ng-book 2(v49) 学习 Angular2。以下是 article.componenets.ts 文件的内容:

import { Component, OnInit } from '@angular/core';
import { Article } from './article.model';

@Component({
  selector: 'app-article',
  templateUrl: './article.component.html',
 styleUrls: ['./article.component.css'],
 host: {
 class: 'row'
 }
})
export class ArticleComponent implements OnInit {
  @Input() article: Article;



  voteUp(): boolean {
    this.article.voteUp();
    return false;
  }

  voteDown(): boolean {
    this.article.voteDown();
    return false;
  }

  ngOnInit() {
  }

}

这是 angular-cli 上的错误:

ERROR in C:/Users/saad/Desktop/books/Angular JS2/angular2Reddit/src/app/article/article.component.ts (13,4): Cannot find name 'Input'.)
webpack: Failed to compile.

控制台错误

4

2 回答 2

5

您缺少输入指令的导入,因此将第一行更改为

import { Component, OnInit, Input } from '@angular/core';

让@Input 参数具有一些值是一种很好的做法,否则您最终会在应用程序的某个位置收到未处理的承诺错误。

为此,它可以在您的ngOnInit构造函数中定义

ngOnInit() {
   this.article={
         id: 0
         .....
   };
}

或者

constructor(....) {
   this.article={
         id: 0,
         .....
   };
}
于 2017-02-18T20:53:12.993 回答
4

如果你想使用它,你必须导入输入:

import { Component, OnInit, Input } from '@angular/core';
于 2017-02-18T20:51:51.327 回答