微信小程序子组件传参给父组件

Posted lude1994

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序子组件传参给父组件相关的知识,希望对你有一定的参考价值。

 

父组件:

<tpupload bind:tpuploadFun="tpupload1" imgs="{{imgs}}" tpNum=\'9\' ></tpupload>

// 事件可以拿到传来的参数

 tpupload1(e){
    console.log(e.detail.imgs, \'这个是子组件传递来的数据\') 
},

 

 

子组件:触发父组件事件,并传参

  that.triggerEvent(\'tpuploadFun\',{
          imgs:imgs
        })

 

以上是关于微信小程序子组件传参给父组件的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序 父子组件间传参

微信小程序父组件使用子组件并传参

微信小程序之组件

微信小程序-wxml标签绑定data值传参给js方法(事件传参)

微信小程序 组件传值 triggerEvent 子传父

微信小程序(14)--上传图片公用组件