angular 2 official tutorialにある以下のスクリプトがあれば、「@」という文字はどういう意味ですか?それはecmascript 6の機能ですか?ecmascript 6の "@"文字は何を意味していますか?
誰もそれについて詳しく説明できますか?
import {Component} from 'angular2/core';
export class Hero {
id: number;
name: string;
}
@Component({
selector: 'my-app',
template:`
<h1>{{title}}</h1>
<h2>{{hero.name}} details!</h2>
<div><label>id: </label>{{hero.id}}</div>
<div>
<label>name: </label>
<input [(ngModel)]="hero.name" placeholder="name">
</div>
`
})
export class AppComponent {
public title = 'Tour of Heroes';
public hero: Hero = {
id: 1,
name: 'Windstorm'
};
}
@もHTTP名前 –
参照を言及するが前にデコレータと注釈を示すために使用されます.io/angular/2015/05/03/the-difference-between-annotations-and-decorators.htmlとhttp://stackoverflow.com/questions/29775830/how-to-implement-a-typescript-decorator –