本篇文章给大家带来的内容是关于小程序开发之组件之间的传值方法(代码示例),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
1.创建组件
打开微信开发者工具,创建组件,会生成四个文件:wxml,wxss,js,json
在wxml中:
在js中:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | Component({
behaviors: [],
properties: {
},
data: {
},
attached: function () { },
moved: function () { },
detached: function () { },
methods: {
}
})
|
在json中:
1 2 3 4 | {
"component" : true,
"usingComponents" : {}
}
|
即组件创建完成
2.引入组件
要在index中引入组件,则
在index.json中:
1 2 3 4 5 | {
"usingComponents" : {
"componentA" : "../../components/child1/child1"
}
}
|
在index.wxml中:
1 2 3 | <view>
<view>微信小程序组件传参</view>
<componenta></componenta></view>
|
则组件就能够显示,要使得组件引入,先要在json中去给组件定义一下才可在wxml中显示
3.父组件向子组件传参
声明:A组件为父组件,B组件为子组件,以下是A组件向B组件传参:
在A组件中引入B组件
在A组件的json中写入:
1 2 3 4 5 6 | {
"component" : true,
"usingComponents" : {
"componentB" : "../child2/child2"
}
}
|
在A组件的wxml中写入:
1 2 3 | <view>我是组件A</view><view>
<view>子组件内容:</view>
<componentb></componentb></view>
|
在B组件的js中写入:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | Component({
behaviors: [],
properties: {
paramAtoB:String
},
data: {
},
attached: function () { },
moved: function () { },
detached: function () { },
methods: {
}
})
|
即在properties中定义A组件要传过来的参数类型
在B组件的wxml中写入:
1 | <view><view>我是组件B</view><view>A中传入的参数:{{paramAtoB}}</view></view>
|
总结: A组件向B组件传参,实际上就是在A组件中引入B组件的时候,带上一个属性paramAtoB,并且给其赋值,然后B组件通过这个属性名称paramAtoB,获取其值
4.子组件向父组件传参
声明:A组件为父组件,B组件为子组件,以下是B组件向A组件传参:
要让子组件给父组件传参,首先得在父组件引入子组件的时候,加个触发事件,如下:
在父组件A中wxml:
1 2 3 4 | <view><view>我是组件A</view><view>
<view>A组件内容:</view>
<view>B组件传入参数:{{paramBtoA}}</view>
<componentb></componentb></view></view>
|
myevent就是绑定的触发事件
在父组件A中js:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | Component({
behaviors: [],
properties: {
},
data: {
},
attached: function () { },
moved: function () { },
detached: function () { },
methods: {
onMyEvent: function (e){
this.setData({
paramBtoA: e.detail.paramBtoA
})
}
}
})
|
onMyEvent就是当被子组件触发时的函数
在子组件B中wxml:
1 2 3 | <view><view>我是组件B</view><view>A中传入的参数:{{paramAtoB}}</view>
<button>向A中传入参数</button>
</view>
|
button按钮点击事件一触发,就可以传入参数进入父组件A中,在子组件B中js:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | Component({
behaviors: [],
properties: {
paramAtoB:String
},
data: {
},
attached: function () { },
moved: function () { },
detached: function () { },
methods: {
change: function (){
this.triggerEvent( 'myevent' , { paramBtoA:123});
}
}
})
|
this.triggerEvent就是按钮点击之后执行的事件,触发myevent事件,传入参数paramBtoA进入父组件
【小程序开发】组件之间传值
1.创建组件
打开微信开发者工具,创建组件,会生成四个文件:wxml,wxss,js,json
在wxml中:
在js中:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | Component({
behaviors: [],
properties: {
},
data: {
},
attached: function () { },
moved: function () { },
detached: function () { },
methods: {
}
})
|
在json中:
1 2 3 4 | {
"component" : true,
"usingComponents" : {}
}
|
即组件创建完成
2.引入组件
要在index中引入组件,则
在index.json中:
1 2 3 4 5 | {
"usingComponents" : {
"componentA" : "../../components/child1/child1"
}
}
|
在index.wxml中:
1 2 3 | <view>
<view>微信小程序组件传参</view>
<componenta></componenta></view>
|
则组件就能够显示,要使得组件引入,先要在json中去给组件定义一下才可在wxml中显示
3.父组件向子组件传参
声明:A组件为父组件,B组件为子组件,以下是A组件向B组件传参:
在A组件中引入B组件
在A组件的json中写入:
1 2 3 4 5 6 | {
"component" : true,
"usingComponents" : {
"componentB" : "../child2/child2"
}
}
|
在A组件的wxml中写入:
1 2 3 | <view>我是组件A</view><view>
<view>子组件内容:</view>
<componentb></componentb></view>
|
在B组件的js中写入:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | Component({
behaviors: [],
properties: {
paramAtoB:String
},
data: {
},
attached: function () { },
moved: function () { },
detached: function () { },
methods: {
}
})
|
即在properties中定义A组件要传过来的参数类型
在B组件的wxml中写入:
1 | <view><view>我是组件B</view><view>A中传入的参数:{{paramAtoB}}</view></view>
|
总结: A组件向B组件传参,实际上就是在A组件中引入B组件的时候,带上一个属性paramAtoB,并且给其赋值,然后B组件通过这个属性名称paramAtoB,获取其值
4.子组件向父组件传参
声明:A组件为父组件,B组件为子组件,以下是B组件向A组件传参:
要让子组件给父组件传参,首先得在父组件引入子组件的时候,加个触发事件,如下:
在父组件A中wxml:
1 2 3 4 | <view><view>我是组件A</view><view>
<view>A组件内容:</view>
<view>B组件传入参数:{{paramBtoA}}</view>
<componentb></componentb></view></view>
|
myevent就是绑定的触发事件
在父组件A中js:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | Component({
behaviors: [],
properties: {
},
data: {
},
attached: function () { },
moved: function () { },
detached: function () { },
methods: {
onMyEvent: function (e){
this.setData({
paramBtoA: e.detail.paramBtoA
})
}
}
})
|
onMyEvent就是当被子组件触发时的函数
在子组件B中wxml:
1 2 3 | <view><view>我是组件B</view><view>A中传入的参数:{{paramAtoB}}</view>
<button>向A中传入参数</button>
</view>
|
button按钮点击事件一触发,就可以传入参数进入父组件A中,在子组件B中js:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | Component({
behaviors: [],
properties: {
paramAtoB:String
},
data: {
},
attached: function () { },
moved: function () { },
detached: function () { },
methods: {
change: function (){
this.triggerEvent( 'myevent' , { paramBtoA:123});
}
}
})
|
this.triggerEvent就是按钮点击之后执行的事件,触发myevent事件,传入参数paramBtoA进入父组件
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
暂时没有评论,来抢沙发吧~