2
我是一個試圖從ng-book 2(v49)學習Angular2的新手。以下是article.componenets.ts文件的內容:未捕獲的參考輸入未定義 - @Input()在Angular 2中不工作
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() {
}
}
這裏是關於角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.
竭誠爲您服務內定義。 upvote也是。 – Aravind
謝謝!解決了我的問題。雖然書中沒有提到這樣的事情。 –
很酷。你以後會面對這些錯誤。 :) – Aravind