uniapp uni.navigateBack返回上一级携带参数解决方法

1:从B页面返回到A页面的方法

navTo(item) {
				var pages = getCurrentPages();
				var prevPage = pages[pages.length - 2]
				let object={
					id:item.id,
					text:item.pro_standard,
					title:item.incentives
				}
				prevPage.$vm.otherFun(object)
				uni.navigateBack({
					delta: 1
				})
			}

2:在A页面接受参数的方法

otherFun(obj){
				this.query.content=obj.text
				this.query.task_id=obj.id
				this.projectTitle=obj.title
				
			},

你可能感兴趣的:(uniapp,微信小程序,uni-app)