class TestClass{
@Expose({name:"public_id"})
publicId!:string
}
我正在使用class-transformer
库来序列化打字稿中的数据。在上面的示例中,我想访问“Expose”装饰器上“name”的值。
简单地说,我希望能够做到这一点。
const test = new TestClass();
getExposeValueOf(test.publicId);//should print "public_id"
class TestClass{
@Expose({name:"public_id"})
publicId!:string
}
我正在使用class-transformer
库来序列化打字稿中的数据。在上面的示例中,我想访问“Expose”装饰器上“name”的值。
简单地说,我希望能够做到这一点。
const test = new TestClass();
getExposeValueOf(test.publicId);//should print "public_id"