HarmonyOS 两个自定义组件之间怎么调用其中一个自定义组件的方法?

现有组件Swiper,以及自定义组件B,类型结构如下:

@Component  
struct B {  
   onAnimationStart?: (index: number, targetIndex: number, event: SwiperAnimationEvent) => void  
  onGestureSwipe?: (index: number, extraInfo: SwiperAnimationEvent) => void  
    build() {  
   }  
   function getCurrentIndicatorInfo(index: number, event: SwiperAnimationEvent) {        
   }  
   function startAnimateTo(duration: number, leftMargin: number, width: number) {  
  }  
}  
build() {  
  Column() {  
     B()  
     Swiper().onAnimationStart((index: number, targetIndex: number, event: SwiperAnimationEvent) => {  
        // 切换动画开始时触发该回调。下划线跟着页面一起滑动,同时宽度渐变。  
        this.currentShelfIndex = targetIndex        
      })  
      .onGestureSwipe((index: number, event: SwiperAnimationEvent) => {  
        // 在页面跟手滑动过程中,逐帧触发该回调。  
      })  
  }  
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.

需要达成的目的是监听Swiper的onAnimationStart事件以及onGestureSwipe事件,调用自定义组件B内对应的方法,请问如何实现?

HarmonyOS
2024-10-16 10:22:55
浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
put_get

父组件调用子组件的方法可参考一下demo:

@Component  
struct Child {  
  @State private text: string = '初始值'  
  private controller: ChildController = new ChildController();  
  aboutToAppear() {  
    if (this.controller) {  
      this.controller.changeText = this.changeText  
    }  
    console.log('aaa')  
  }  
  private changeText = (value: string) => {  
    this.text = value  
    console.log('bbb')  
  }  
  build() {  
    Column() {  
      Text(this.text)  
    }  
  }  
}  
class ChildController {  
  changeText = (value: string) => {  
    console.log('11111')  
  }  
}  
export let ChildRef = new ChildController()  
@Entry  
@Component  
struct Parent {  
  @State noShow: boolean = false  
  build() {  
    Column() {  
      Text('获取Child的exposeMethods!').fontSize('18vp').fontColor(Color.Gray)  
      Divider()  
      Child({ controller: ChildRef })  
      Child()  
      Button('Parent调用childer的changeText').onClick(() => {  
        ChildRef.changeText('Parent调用childer的changeText')  
      })  
    }  
  }  
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
分享
微博
QQ
微信
回复
2024-10-16 17:25:45
相关问题
HarmonyOS 实现一个自定义分类列表
272浏览 • 1回复 待解决
如何实现一个自定义询问框
417浏览 • 1回复 待解决
如何在自定义函数中创建一个UI组件
1817浏览 • 1回复 待解决
HarmonyOS 自定义方法链式调用
163浏览 • 1回复 待解决
怎样实现一个自定义播放器?
358浏览 • 1回复 待解决
实现一个自定义动画,出现丢帧问题
383浏览 • 1回复 待解决
使用自定义函数创建一个UI组
354浏览 • 1回复 待解决
如何快速开发出一个自定义弹窗?
371浏览 • 1回复 待解决
如何实现一个自定义样式toast提示
1949浏览 • 1回复 待解决
js 自定义组件如何传递方法
5873浏览 • 2回复 待解决
HarmonyOS自定义组件增加方法如何实现
397浏览 • 1回复 待解决
如何封装一个自定义Dialog对话框
2215浏览 • 1回复 待解决
如何添加一个自定义代码文件夹
428浏览 • 1回复 待解决