小程序如何点击tabar刷新此页面 小程序 tabbar 刷新

主机教程 建站分享 2年前 (2022-10-03) 192次浏览

文章摘要:小程序如何点击tabar刷新此页面 小程序 tabbar 刷新

小程序点击tabar刷新此页面的方法: 调用onShow函数实现。 onShow: function […]

小程序点击tabar刷新此页面的方法:

调用onShow函数实现。

onShow: function(){

var that =this;

wx.request({

url: app.globalData.web_url+'yourApi?open_id='+ wx.getStorageSync('open_id'),

success: function(res){

that.setData({

cartList: res.data.cartList,

cartSize: res.data.cartSize,

totalAmount: res.data.totalAmount

})

}

})

},


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:小程序如何点击tabar刷新此页面 小程序 tabbar 刷新
文章链接:http://www.7966.org/post/12952.html
转载请注明出处

喜欢 (0)