HarmonyOS Builder 函数作为一个控件的入参,Builder 函数的click this没有指向原始的this

页面Page, 里面有一个控件View, 从Page给View 传递了一个构建的Builder函数, 但该函数的onClick this 没有指向Page。(导致title 不更新)

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

参考demo:

@Component
struct CustomContainer {
  @Prop header: string = '';
  @Builder defaultBulder(){}

  @BuilderParam rightBuilder: () => void = this.defaultBulder
  build() {
    Column() {

      this.rightBuilder()
    }
  }
}
@Entry
@Component
struct CustomContainerUser {
  @State text: string = 'header';

  build() {
    Column() {
      Text(this.text)
      CustomContainer({ header: this.text }) {
        Column() {
          this.rightBuilder('testA', 'testB')
        }.backgroundColor(Color.Yellow)
        .onClick(() => {
          this.text = 'changeHeader';
        })
      }
    }

  }
  @Builder  rightBuilder(label1: string, label2: string) {
    Column() {
      Button('右边按钮').onClick(() => {
        this.text = '点击了'
        console.log('qqqq1=',this)
      })
      //   }
    }
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
@Builder自定义构建函数,如何回
309浏览 • 1回复 待解决
HarmonyOS 如何在builder函数中传入组件
374浏览 • 0回复 待解决
arkTS是否支持将类作为
1727浏览 • 1回复 待解决
对象中函数this如何指向外层
2032浏览 • 1回复 待解决
HarmonyOS 想在builder中插入builder
44浏览 • 1回复 待解决
HarmonyOS @Builder内容如何刷新
50浏览 • 1回复 待解决