小程序组件事件通信

组件



watchInput(e) {
	// 第一个参数为组件上写的bind事件,第二个为传递的参数
     this.triggerEvent('watchInputPage', e)
 },

父页面




watchInputFather(e){
	// 传递的参数都再e.detail 里面
}

你可能感兴趣的:(微信小程序)