微信小程序中组件通讯的介绍(代码示例)

来源:不言 发布时间:2018-11-01 10:06:29 阅读量:649

本篇文章给大家带来的内容是关于微信小程序中组件通讯的介绍(代码示例),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

这篇主要讲组件通讯

(1)父组件向子组件传值:

1

<header title='{{title}}' bind:fn='fn' id='header'></header>

通过title='{{title}}'传向子组件向子组件传递参数

子组件接收参数:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

Component({

  properties: {

    title: {       // 属性名 type: Number, // 类型(必填)

      type: String,//目前接受的类型包括:String, Number, Boolean, Object, Array, null(表示任意类型)

    },

    fn: {     

      type: Function,

    },

  },

  data: {

       

  },

  methods: {

    // 子组件调用父组件方法

    childFn() {

      console.log(this.data.title)

      this.triggerEvent("fn");

      //triggerEvent函数接受三个值:事件名称、数据、选项值 

    }

  }

})

methods使用title时 this.data.title 直接就可以获取到

通过 bind:fn='fn'传向子组件向子组件传递方法

方法同样也要在properties接收,methods里定义一个新方法, this.triggerEvent("fn") 接收父组件传递过来的方法

(2)父组件调用子组件数据及方法:

首先在父组件js onReady 生命周期中获取到组件

1

2

3

4

onReady: function () {

    //获得popup组件

    this.header= this.selectComponent("#header");

},

比如要调用子组件的一个function方法

1

2

3

4

// 调用子组件方法

 fn(){

   this.header.fn() //子组件的方法

 },


标签: PHP
分享:
评论:
你还没有登录,请先