基于uniapp实现微信小程序-商品加入购物车后点击购物车tabBar,页面自动更新且在购物车跳转页面之后再跳转回原页面页面不自动更新onShow()、onLoad()配合

async onLoad() {
			wx.showLoading({
				mask:true,
				title:"加载中..."
			})
			await this.cartData()
		},
// 关键步骤如下		
async onShow(){
            //this.test()当页面再重新加载后请求云数据库商品列表
			let resData =  await this.test()
            //this.goodsItem为onload()页面渲染后的商品列表
			if(resData.length != this.goodsItem.length){
				const pages = getCurrentPages()
				const perpage = pages[pages.length - 1]
				perpage.onLoad()
			}
			
		}

希望对读者们有所帮助

--来自 tongge_1(作者网名)

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