码迷,mamicode.com
首页 > 微信 > 详细

微信小程序 子组件调用父组件方法

时间:2019-11-02 11:25:46      阅读:1125      评论:0      收藏:0      [点我收藏+]

标签:on()   code   call   trigger   bind   rda   执行   component   微信   

组件 js: 

var value = 123;
this.triggerEvent(‘callSomeFun‘, value)

 

父组件 wxml:

<component bind:callSomeFun="onLoad"></component>

 

父组件 js :

onLoad: function() {
  ... ...  
}




父组件调用子组件的方法

当父组件引用了子组件的时候,会遇到父组件执行子组件的方法

父组件中

wxml: <filter-cmp id=‘filter-cmp‘ bind:filterTriger=‘filterTriger‘></filter-cmp>

js:    this.selectComponent(‘#filter-cmp‘).restFilterDatas();

子组件中: 定义方法 restFilterDatas








微信小程序 子组件调用父组件方法

标签:on()   code   call   trigger   bind   rda   执行   component   微信   

原文地址:https://www.cnblogs.com/shaozhu520/p/11781114.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!