The use of micro-channel applet switchTab after the jump page does not refresh:

wx.switchTab({
    url: '/pages/allGoods/allGoods',
    success:function(e){
        var page = getCurrentPages().pop();
        if(page == undefined || page == null){
            return;
        }else{
            page.onLoad();
        }
    }
})
Published 26 original articles · won praise 1 · views 2230

Guess you like

Origin blog.csdn.net/qq_38396070/article/details/100532359