如何枚举元数据属性?

时间:2019-02-27 17:04:02

标签: typescript reflection

所以我可以在打字稿中使用这种类型的代码(不能在操场上工作,您需要启用“ emitDecoratorMetadata”选项的副本)

import "reflect-metadata";    

class test {
    a: number;
    b: boolean;
    c: string;
}

Reflect.getMetadata("design:type", (new test()), "a")

但是我如何枚举测试中包含的所有元数据-在我看到的示例中:

Reflect.getMetadataKeys(test.prototype, "property")

但是在我的情况下,它返回一个空数组。

0 个答案:

没有答案