赞
踩
在微信小程序里,父组件可以向子组件传值,子组件也可以向父组件传值,不过这两种传值方式不大相同,下面先简单介绍这两种传值的区别。
首先在小程序中创建一个 components 文件夹用来存放子组件,然后在 components 文件夹下新建一个要创建的子组件文件夹名称,我这里的文件夹名称为 child ,然后右键 child 文件夹,点击新建 Component ,输入名称最好和新建的文件夹名称一致,如下图所示:
创建好之后,将子组件 child 引入到父组件中,在父组件的 json 文件中的 usingComponents 节点下引入,如下所示:
- "usingComponents": {
- "mycom": "../../components/child/child"
- }
我们在父组件引入时,自定义了一个组件名为 mycom ,我们在父组件上渲染的时候,用 <mycom></mycom> 这组标签即可。还需要在子组件的 json 文件内设置 "component": true 。
- {
- "component": true,
- "usingComponents": {}
- }
父组件向子组件传值
parent.wxml:
- <view class="container">
- <view>我是父组件</view>
- <view>====================================</view>
- <mycom name="{{ name }}" age="{{ age }}"></mycom>
- </view>
在父组件的页面内引入子组件即 <mycom></mycom> 标签,使用属性绑定的方式把父组件的值绑定。
parent.js:
- data: {
- name: 'Ikun',
- age: 24
- },
在父组件的 js 文件 data 中定义数据。
child.wxml:
- <view>
- <view>我是子组件,下面是父组件传过来的数据</view>
- <view>name: {{ name }}</view>
- <view>age:{{ age }}</view>
- </view>
child.js:
- Component({
- properties: {
- name: {
- type: 'String',
- value: '小明'
- },
- age: Number
- }
- })
在子组件的 js 文件的 properties 对象中接收父组件传过来的值。
最终效果如下:
总结:
父组件向子组件传值以属性的形式,子组件以 properties 接收,并可指定数据类型 type 以及默认值 value 。
子组件在 wxml 里可以直接以 {{ 属性名 }} 的形式使用,而在 js 中想要获得父组件传过来的数据的话,可以通过 observers 监听 properties 的属性值来获取。
- observers:{
- 'name': function(val){
- console.log(val)
- }
- }
子组件向父组件传值
child.wxml:
<view bindtap="newName000">111111111</view>
child.js:
- methods: {
- newName000() {
- this.triggerEvent('newName111', {
- name111: '李四',
- name222: '李四',
- name333: '李四'
- })
- }
- }
子组件向父组件传递数据使用 this.triggerEvent() 方法,newName 是传递给父组件的自定义事件名称。
这个方法可以接收三个参数:
this.triggerEvent('myevent', myEventDetail, myEventOption);
myevent
为自定义的方法名;
myEventDetail
是传到组件外的数据;
myEventOption
为是否冒泡的选项,可设置三个参数:
bubbles
:默认 false
事件是否冒泡;
composed
:默认 false
事件是否可以穿越组件边界;
capturePhase
:默认 false
事件是否拥有捕获阶段
parent.wxml:
<mycom age="{{ age }}" bindnewName111="newName222"></mycom>
parent.js:
- newName222(event) {
- console.log(event.detail)
- }
效果如图所示:
总结
在父组件监听事件 bindnewName111="newName222" 等价于 bind:newName111="newName222",与 bind 所绑定的 newName111 为子组件自定义的事件名,右侧的 newName 为父组件的方法。 newName222 方法的 事件对象 event ,子组件传递过来的值可以从 event.detail 里拿到。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。