分享你我的心得.
共乘一片美好网络.

小程序跳转刷新

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

switchTab成功跳转后调用success,此时可以拿到跳转后页面的page对象,从而调用页面onLoad方法重载页面;微信后期应该会加相应的参数来决定是否刷新跳转

赞(0)
未经允许不得转载:小叶白龙博客 » 小程序跳转刷新
分享到: 更多 (0)

评论 抢沙发

评论前必须登录!