微信小程序 子组件调用父组件方法
Posted 小义博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序 子组件调用父组件方法相关的知识,希望对你有一定的参考价值。
组件 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
以上是关于微信小程序 子组件调用父组件方法的主要内容,如果未能解决你的问题,请参考以下文章