HarmonyOS 无法使用class-transformer中的@Type注解

定义嵌套类型,代码如下:

import { Type, Expose, instanceToPlain, plainToClass, instanceToInstance } from 'class-transformer';  
export class User {  
  @Expose({name: 'user_id'})  
  uid: number = 0;  
  @Expose({name: 'user_name'})  
  userName: string = '';  
  @Expose({name: 'source_type'})  
  sourceType: string = '';  
  @Expose({name: 'is_leader'})  
  isLeader: boolean = false;  
  @Expose({name: 'role_name'})  
  roleName: string = '';  
  constructor(id: number, name: string, type: string, isLeader: boolean, roleName: string) {  
    this.uid = id;  
    this.userName = name;  
    this.sourceType = type;  
    this.isLeader = isLeader;  
    this.roleName = roleName;  
  }  
  static fromPlain(plain: object): User {  
    return plainToClass(User, plain);  
  }  
  toJson(): string {  
    return JSON.stringify(instanceToPlain(this));  
  }  
}  
export class UserResponse {  
  @Type(() => User)  
  user: User;  
  constructor(user: User) {  
    this.user = user;  
  }  
  static fromPlain(plain: object): UserResponse {  
    return plainToClass(UserResponse, plain);  
  }  
  toJson(): string {  
    return JSON.stringify(instanceToPlain(this));  
  }  
}

运行程序报错:

Pid:34987  
Uid:20020002  
Reason:TypeError  
Error name:TypeError  
Error message:is not callable  
SourceCode:  
        var reflectedType = Reflect.getMetadata('design:type', target, propertyName);  
                            ^  
Stacktrace:  
SourceMap is not initialized yet   
    at anonymous (oh_modules/.ohpm/class-transformer@0.5.1/oh_modules/class-transformer/esm5/decorators/type.decorator.js:11:29)  
    at func_main_0 (commons/datastore/src/main/ets/model/User.ets:1:1)
HarmonyOS
2024-10-10 12:01:06
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
superinsect

使用@Type装饰器的时候,确保引入reflect-metadata。在ability里import reflect-metadata。

分享
微博
QQ
微信
回复
2024-10-10 18:02:52
相关问题
HarmonyOS class-transformer问题
285浏览 • 1回复 待解决
HarmonyOS 如何在ArkTS中使用注解
111浏览 • 1回复 待解决
嵌套Class属性变化无法触发UI渲染
205浏览 • 1回复 待解决
NAPI定义并注册Class
642浏览 • 1回复 待解决
HarmonyOS 如何自定义注解
138浏览 • 1回复 待解决
求js class类名动态绑定问题?
6350浏览 • 1回复 待解决
HarmonyOS装饰器或注解实现方式咨询
365浏览 • 1回复 待解决
module.json5配置文件type含义
445浏览 • 1回复 待解决
HarmonyOS class 转 Map
16浏览 • 0回复 待解决
ArkTSglobalThis无法使用该如何替换
2205浏览 • 1回复 待解决
HarmonyOS hdc无法使用
71浏览 • 1回复 待解决