angular2中的装饰器在组件中做了什么?

时间:2016-02-16 11:28:27

标签: angular decorator

angular2中的装饰器有什么用?它有什么作用? 喜欢在设计时注释和修改类和属性。 这听起来很像注释做得对吗? 你能解释一下吗? 提前谢谢。

1 个答案:

答案 0 :(得分:2)

它为组件,指令,管道和依赖注入提供元信息。

它们可以被工具用于linting和auto-completion以及其他设计工具。

构建工具将从中生成代码(或HTML / CSS)。

另见How are decorators (annotations) compiled in Typescript?