注解(annotation)
- 注解为程序的元素(类、方法、变量)加上更直观更明了的说明,这些说明信息与程序的业务逻辑无关,而是供指定的工具或框架使用的.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'My First Angular App';
}
// AppComponent上面有个@Compoent注解
// 这个@Compoent注解本身是由Angular2框架提供的
// 注解里面有一些属性
// 属性告诉Angular怎么处理AppComponent这样一个TypeScript类
// 在Angular框架里面,实例化 AppComponent 类,
// Angular框架应该去加载 app.component.html 页面和app.component.css 然后展示在页面上
https://serious-lose.notion.site/TS-Annotation-74eb1541057643d891f27eae40033852https://serious-lose.notion.site/TS-Annotation-74eb1541057643d891f27eae40033852