微信小程序父子组件之间传值可以通过以下几种方法实现:
父组件中的wxml代码:
<child-component value="{{value}}"></child-component>
父组件中的js代码:
Page({
data: {
value: 'Hello World'
}
})
子组件中的js代码:
Component({
properties: {
value: {
type: String,
value: ''
}
},
methods: {
getValue() {
console.log(this.properties.value); // 输出:Hello World
}
}
})
父组件中的wxml代码:
<child-component bind:myevent="handleEvent"></child-component>
父组件中的js代码:
Page({
handleEvent(event) {
console.log(event.detail); // 输出:Hello World
}
})
子组件中的js代码:
Component({
methods: {
sendValue() {
this.triggerEvent('myevent', 'Hello World');
}
}
})
父组件中的js代码:
const app = getApp();
Page({
data: {
value: ''
},
onLoad(options) {
app.globalData.value = 'Hello World';
},
getValue() {
console.log(app.globalData.value); // 输出:Hello World
}
})
子组件中的js代码:
const app = getApp();
Component({
methods: {
getValue() {
console.log(app.globalData.value); // 输出:Hello World
}
}
})
以上是三种常见的父子组件传值的方法,根据具体需求选择合适的方式进行数据传递。