当我用TypeScript中的元数据来注释类时,例如要创建一个Angular2组件,我可以访问该类中的元数据吗?
import {Component} from 'angular2/core'; @Component({ selector: 'app',templateUrl: '/app/components/app/app.component.html' }) export class AppComponent { // can I access 'templateUrl' from above annotation here? }@H_403_3@
@H_403_3@
您可以将注释/装饰器看作正常的函数调用.对于这个功能,’Class / Function’对象(不是实例)在第一个参数中获取发送,在第二个参数中获取参数(元数据).
然而,如果某些东西被添加到类的原型(坏习惯/暴露属性)中,则取决于该函数的实现. TypeScript编译器和Angular2做不同的事情.
它们使用__decorate和__Metadata函数,它们是由TypeScript编译器生成的.数据加入了Object.defineProperty()功能.负责这个的包是Reflect.(在引擎罩下使用Object.defineProperty()函数与WeakMap的组合).
函数Reflect.defineMetadata()用于设置注释,并获得明显的Reflect.getMetadata().
TLDR;
>要获得角色2中的类/组件的注释,您可以
使用:
Reflect.getMetadata('annotations',ComponentClass); //@Component({}),@Pipe({}),...
>要从angular2中的构造函数参数中获取注释,您必须使用:
Reflect.getMetadata('parameters',ComponentClass); //@Inject()
Reflect.getMetadata('propMetadata',ComponentClass); //@HostBinding(),@Input(),...@H_403_3@ 原文链接:https://www.f2er.com/angularjs/140345.html