Bootstrap

uni跳转传递对象

一、跳转页面


//在起始页面跳转到test.vue页面并传递参数
uni.navigateTo({
	url: '/pages/detail?id=1&name=uniapp'
});

二、传递参数

先进行编码后再进行传递


uni.navigateTo({
    url: '/pages/detail?item='+encodeURIComponent(JSON.stringify(this.item))
});

三、接收参数


// 在detail.vue页面接受参数
onLoad: function (option) {//option为object类型,会序列化上个页面传递的参数
	const item = JSON.parse(decodeURIComponent(option.item));
}

;