小程序跳转页面后,动态刷新跳转页面

参考链接:https://blog.csdn.net/dreamimport/article/details/103491357

wx.switchTab({
    url: '../shoppingTrolley/index',
    success() {
        var page = getCurrentPages().pop();
        if (page == undefined || page == null) return;
        page.onLoad();
    }
})

 

posted @ 2020-08-25 17:12  放飞的回忆  阅读(271)  评论(0编辑  收藏  举报