vue 页面之间传值 传递数组的方式
传递的页面:例:uniapp中demoClick(){uni.navigateTo({url:'./applyToDevice?planName=' + this.detail.name + '&list=' + encodeURIComponent(JSON.stringify(this.detailList))})}接收的页面:onLoad(option) {console.log(o
·
传递的页面:
例:uniapp中
demoClick(){
uni.navigateTo({
url:'./applyToDevice?planName=' + this.detail.name + '&list=' + encodeURIComponent(JSON.stringify(this.detailList))
})
}
接收的页面:
onLoad(option) {
console.log(option)
this.planName = option.planName
this.planDoors = JSON.parse(decodeURIComponent(option.list))
this.getNum()
},
更多推荐
已为社区贡献3条内容
所有评论(0)