wx.switchTab({
url: '../index/index',
success: function (e) {
var page = getCurrentPages().pop();
if (page == undefined || page == null) return;
page.onLoad();
}
})
注释:switchTab 成功跳转后会调用 success,此时可以拿到跳转后页面的page对象,从而调用页面onLoad方法重载页面。