私はこのチュートリアルに従っています。 https://www.youtube.com/watch?v=_-CD_5YhJTACoursesComponentに指令がありません
しかし、私はこのエラーを取得しておいてください。
EXCEPTION: No Directive annotation found on CoursesComponent
私app.components.tsこの
import {Component} from 'angular2/core';
import {CoursesComponent} from './courses.component';
@Component({
selector: 'my-app',
template: '<h1>Hello Angular 2</h1><courses></courses>',
directives: [CoursesComponent]
})
export class AppComponent { }
私courses.components.tsのように見えますが、この
import {Component} from 'angular2/core';
@Component({
selector:'courses'//css selector
template: '<h2>Courses</h2>'
})
export class CoursesComponent{ }
のように見えます
my package.json
{
"name": "angular2-quickstart",
"version": "1.0.0",
"scripts": {
"start": "concurrent \"npm run tsc:w\" \"npm run lite\" ",
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"typings": "typings",
"postinstall": "typings install"
},
"license": "ISC",
"dependencies": {
"angular2": "2.0.0-beta.7",
"systemjs": "0.19.22",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"zone.js": "0.5.15"
},
"devDependencies": {
"concurrently": "^2.0.0",
"lite-server": "^2.1.0",
"typescript": "^1.7.5"
}
}
この問題を解決するにはどうすればよいですか?
'component'は' directive'属性をサポートしていない属性や構造的なディレクティブを作成するためのディレクティブと@directive注釈の詳細については、角度のドキュメントを読むアプリ
全体づけしになります。あなたの 'angular2'バージョンは何ですか? rc.3または5のいずれかの 'directives'属性を削除しました。 – choz
@choz、package.jsonのバージョン1.0.0を表示 – noor
' package.json'を投稿できますか? – choz