0
class TestClass{ 
  @Expose({name:"public_id"})
  publicId!:string
}

我正在使用class-transformer库来序列化打字稿中的数据。在上面的示例中,我想访问“Expose”装饰器上“name”的值。

简单地说,我希望能够做到这一点。

const test = new TestClass();
getExposeValueOf(test.publicId);//should print "public_id"
4

0 回答 0