HarmonyOS ArkTS怎么写回调事件监听

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

参考示例如下:

export interface test {
  getTest: (info: TestInterface) => void
}

export class TestInterface {
  public test: test | null = null
  public infos: string = ""

  public setTestListener(test: test) {
    this.test = test
  }

  public getATest(info: TestInterface) {
    this.test?.getTest(info)
  }
}

export class TestClass {
  public t1: TestInterface | null = null
  constructor() {
    this.t1 = new TestInterface()

    let test: test = {
      getTest: (info: TestInterface) => {
        console.log("this interface has been constructed, and this method has done, the info is : " + info.infos)
      }
    }
    this.t1.setTestListener(test)
  }

  doATest(info: string) {
    this.t1!.infos = info
    this.t1?.getATest(this.t1)
  }
}

@Entry(localStorage)
@Component
struct Index {
  tc: TestClass = new TestClass()

  build() {
    Column() {
      Text("test")
      Button("click").onClick(() => {
        this.tc.doATest("叮咚FM")
      })
    }
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS 如何编写回函数?
35浏览 • 1回复 待解决
HarmonyOS 如何写回函数
22浏览 • 1回复 待解决
鸿蒙 怎么监听开机事件
3262浏览 • 1回复 待解决
HarmonyOS 属性动画怎么监听帧回
316浏览 • 1回复 待解决
HarmonyOS 控件的长按事件怎么监听
13浏览 • 0回复 待解决
怎么监听键盘的弹起和关闭事件
2775浏览 • 1回复 待解决
HarmonyOS 事件
67浏览 • 1回复 待解决
HarmonyOS 点击事件监听问题
17浏览 • 1回复 待解决
HarmonyOS 键盘事件监听问题
662浏览 • 1回复 待解决
HarmonyOS connection监听断网事件
38浏览 • 1回复 待解决
HarmonyOS 点击事件的回方法
44浏览 • 1回复 待解决
HarmonyOS Scroll组件回事件问题
224浏览 • 1回复 待解决