天天看點

小程式switchTab傳值

小程式switchTab傳值

參考官方文檔,wx.switchTab路徑後不能帶參數。

小程式switchTab傳值

可以采取全局變量的方式

A頁面

toAdd() {
	app.id= this.id
	uni.switchTab({
		url: '/pages/add/add'
	});
},
           

B頁面

onShow() {
	this.id = app.id
},