HarmonyOS中子组件如何调用父组件中定义的方法

类似私有属性变量的定义,只是属性变量类型是一个方法,通过()=>void进行声明​

@Entry
@Component
struct Parent {

  parentFunc(){
    AlertDialog.show({message:'this is from parent',alignment:DialogAlignment.Bottom,offset:{dx:0,dy:-30}})

  }

  build() {
    Column() {
      Child({func:()=>{
        this.parentFunc()
      }})
    }
    .height('100%').width('100%')
  }
}

@Component
struct Child{
  func:()=>void

  build(){
    Row(){
      Button('点我试试').onClick(()=>{
        this.func()
      }).width('30%').height(40)
    }.width('100%').height('100%').justifyContent(FlexAlign.Center)
  }
}

效果如下:

HarmonyOS中子组件如何调用父组件中定义的方法_第1张图片

你可能感兴趣的:(HarmonyOS,应用开发实战,harmonyos,华为)