小程序使用switchtab 怎么使页面重新刷新

          wx.switchTab({
            url: '/pages/contentList/index',
            success: function (e) {
              let page = getCurrentPages().pop();
              if (page == undefined || page == null) {
                return;
              }
              page.onLoad();
            }
          })

你可能感兴趣的:(小程序,前端,javascript)