微信小程序—组件通信—使用selectComponent获取组件实例
子组件component
wxml
<view>{{count}}</view>
js
properties: {
count:Number
},
methods: {
addCount(){
this.setData({
count:this.properties.count+1
})
this.triggerEvent('sync',{value:this.properties.count})
}
}
一.通过父页面增加子组件的数据值
父页面page
wxml
<mytest count="{{count}}" bind:sync="syncCount" class="childC" id="cC"></mytest>
<view>{{count}}</view>
<button bindtap="getChild">获取子组件的实例对象</button>
js文章来源:https://www.toymoban.com/news/detail-512756.html
data: {
count:1
},
syncCount(e){
this.setData({
count:e.detail.value
})
},
getChild(){
const child = this.selectComponent('.childC')
child.setData({
count:child.properties.count+1
})
},
二.通过父页面调用子组件的方法文章来源地址https://www.toymoban.com/news/detail-512756.html
getChild(){
const child = this.selectComponent('.childC')
child.addCount()
},
到了这里,关于微信小程序---组件通信---使用selectComponent获取组件实例的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!