微信小程序中,通过 this.setData 设置 data 参数,通过 this.data.参数名 获取参数。
//设置
onChange(e) {
this.setData({
name: '张三'
});
},
//获取
onShow() {
console.log(this.data.name) //张三
}
(adsbygoogle = window.adsbygoogle || []).push({});
来源:https://www.02405.com/archives/2066