HarmonyOS 能否自定义自己的装饰器

HarmonyOS
7天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
FengTianYa

ArkTS支持TS5.0之前的TS装饰器语法。关于装饰器的定义和运行时行为,可以参考TS官方文档:https://www.typescriptlang.org/docs/handbook/decorators.html

function TestClassDecorator(target: Function) {
}
function TestMemberDecorator(target: testClass, memberName: String) {
}
function TestFunDecorator(target: testClass, propertyName: String, descriptor: PropertyDescriptor) {
}
function TestArgDecorator(target: Function, methodName: String, paramIndex: Number) {
}
@TestClassDecorator
class testClass {
  @TestMemberDecorator count: number = 123;
  @TestFunDecorator
  TestFun(@TestArgDecorator param: string) {
  }
}

注意,如果在ets文件中定义装饰器,则需要同时满足ArkTS的语法规则,比如不能使用any等。以下是类装饰器、属性装饰器、方法装饰器、参数装饰器的简单示例:

自定义装饰器不支持装饰struct,可参考demo:

// 类装饰器
function decorateKlass(target: ESObject) {
  console.log("decorateKlass")
}
@decorateKlass
class Person {
  age: number = 12
}
// 方法装饰器
export function MyDescriptor(target: Object, key: string, descriptor: PropertyDescriptor) {
  const originalMethod: Function = descriptor.value
  descriptor.value = (...args: Object[]) => {
    console.log(Calling ${target.constructor.name} method ${key} with argument: ${args})
    const result: Object = originalMethod(...args)
    console.log(Method ${key} returned: ${result})
    return result
  }
  return descriptor
}
@Entry
@Component
struct DecoratorDemo {
  @State message: string = 'Hello World';
  aboutToAppear() {
    this.demo()
  }
  build() {
    Flex() {
    }
    .backgroundColor(Color.Green)
    .constraintSize({
      minWidth: 100,
      maxWidth: 200,
      minHeight: 0,
      maxHeight: 200
    })
    .height('100%')
  }
  @MyDescriptor
  demo() {
    let person = new Person();
    return person.age
  }
}
分享
微博
QQ
微信
回复
6天前
相关问题
自定义装饰使用问题
906浏览 • 1回复 待解决
HarmonyOS 自定义装饰this指向问题
117浏览 • 1回复 待解决
是否支持自定义装饰
2196浏览 • 1回复 待解决
HarmonyOS 是否支持自定义装饰
328浏览 • 1回复 待解决
HarmonyOS 怎么自定义装饰
103浏览 • 1回复 待解决
ArkTS是否支持自定义装饰
2603浏览 • 1回复 待解决
HarmonyOS ArkTS 如何实现自定义装饰
89浏览 • 1回复 待解决
HarmonyOS 自定义装饰不能作用于ets
581浏览 • 1回复 待解决
HarmonyOS 弹窗样式能否支持自定义
170浏览 • 1回复 待解决
自定义组件如何增加自己对外方法
1996浏览 • 1回复 待解决
HarmonyOS Video组件能否设置自定义header
438浏览 • 1回复 待解决