当前位置:   article > 正文

uniapp uni.navigateTo传递(对象类型)参数_uni.navigateto 传参

uni.navigateto 传参

最近在做微信小程序,用的是uniapp开发的,自己记录一下,也和大家分享一下

1、字符串拼接,传递单个属性值

index页面传递:

data(){



    return{



        companyOrgId:1



    }



}



 



methods:{



    goRegister() {



	    uni.navigateTo({



	    url: `./registerDetail?companyOrgId=${this.companyOrgId}`



	    });



    },



}
  • 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
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49

home页面接收:

onLoad(options) {



	this.info.companyOrgId = options.companyOrgId;



    console.log(options.companyOrgId);



},
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

2、整个对象的传递

index页面传递:

data(){



    return{



           info: {



				companyOrgId: '',



				sex: 0,



				surname: '',



				firstname: '',



				email: '',



				phone: '',



				phoneAreaCode: '+852',



				password: '',



				passwordTwo: '',



				birthYear: 'YY',



				birthMonth: 'MM',



				birthDay: 'DD'



			},



    }



}



 



methods:{



 



    goRegisterCode() {



			console.log('info', this.info);



			uni.navigateTo({



				url: './registerCode?info=' + encodeURIComponent(JSON.stringify(this.info))



			});



		},



}
  • 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
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109

home页面接收:

onLoad(options){



 



    let userInfo = JSON.parse(decodeURIComponent(options.info));



    console.log('userInfo', userInfo);



}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

3、多个对象的传递

index页面传递:

uni.navigateTo({ 



    url: '/pages/setSeal/index?seal=' + encodeURIComponent(JSON.stringify(seal)) + '&cStorageModel' + encodeURIComponent(JSON.stringify(cStorageModel)) 



});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

home页面接收:

 onLoad(option){



    this.pageModel.sealAuth = JSON.parse(decodeURIComponent(option.sealAuth));



    this.pageModel.cStorageModel = JSON.parse(decodeURIComponent(option.cStorageModel));



  },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/656444
推荐阅读
相关标签
  

闽ICP备14008679号