微信小程序组件传值调用父组件

it2024-11-30  12

1.父级页面引用页面

<myTest wx:if="{{isBirthday}}" bind:callSomeFun="resStatus" isShow="true" text="XXX生日快乐"></myTest>

bind:callSomeFun="resStatus"          callSomeFun为组件通过triggerEvent返回  resStatus为父级方法

2.组件中

this.triggerEvent('callSomeFun',value)

返回到父级中,通过‘callSomeFun’可以拿到value值,value可根据自己自定义

3.获取父级传来的数据

properties: {

    text: {

      type: String,

      value: ''

    },

    isShow:{

      type:Boolean,

      value:false

    }

  },

 

最新回复(0)