小程序子组件向父组件传递数据
2021/12/2 20:08:24
本文主要是介绍小程序子组件向父组件传递数据,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
<!- 子组件wxml --> <view class="child"> <view class="child_item {{item.isActive===true?'active':''}}" wx:for="test_data" wx:key="id" bindtap="handleTap" data-index = {{index}} >{{item.name}}</view> </view>
绑定点击事件, 子组件触发父组件的自定义事件 this.triggerEvent("事件名",参数)向父组件传递参数
//子组件js Component({ properties: { test_data:{ type:Array, value:[] } }, methods:{ handleTap(e) { const index = e.currentTarget.dataset.index; this.triggerEvent("handlefatherEvent",index); } } })
<!-- 父组件wxml --> <child test_data="{{testData}}" bindhandleFatherEvent="handleFatherEvent"> </child>
父组件绑定自定义事件,接收子组件传递数据
//父组件js Page({ data:{ testData:[ {id:0,apple,isActive:true}, {id:1,banana,isActive:false}, {id:2,grape,isActive:false} ] }, handleFatherEvent(e) { const index = e.detail; let data = this.data.testData; data.forEach( (v,i)=>i===index? v.isActive=true:v.isActive=false) this.setData({testData}); } })
这篇关于小程序子组件向父组件传递数据的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-13微信小程序如何封装接口域名?-icode9专业技术文章分享
- 2024-11-13如何在微信小程序中实现直传功能?-icode9专业技术文章分享
- 2024-11-13如何在小程序的地图组件中添加标记和文字?-icode9专业技术文章分享
- 2024-11-13在微信小程序的地图组件中如何实现自定义标记和气泡?-icode9专业技术文章分享
- 2024-11-01微信小程序教程:零基础入门到实战
- 2024-11-01微信小程序全栈教程:从入门到实践
- 2024-10-31微信小程序怎么实现关注公众号功能-icode9专业技术文章分享
- 2024-10-30微信小程序cover-view,支持bindtap吗-icode9专业技术文章分享
- 2024-10-30微信小程序的cover-image支持bindtap吗-icode9专业技术文章分享
- 2024-10-30微信小程序web-view怎么设置高度?-icode9专业技术文章分享