小程序获取子组件的数据和方法

2025-01-03

使用selectComponent()方法。

index.wxml

<button bindtap="getChild">获取子组件实例对象</button>

index.js

getChild(){
	const res = this.selectComponent(.child) //提前在子组件定义类名或id
	console.log(res.data)
}