taro跳转到tabBar报错问题

10次阅读
没有评论

{errMsg: “redirectTo:fail can not redirectTo a tabbar page”}
改用解决
Taro.switchTab(option)
跳转到 tabBar 页面,并关闭其他所有非 tabBar 页面

if (res.code === 30000) {
        Taro.showToast({
          title: "登录成功",
          icon: "success",
        });
        Taro.switchTab({
          url: "../message/index",
        });
      } else {
        Taro.showToast({
          title: "登录失败",
          icon: "none",
        });
      }

正文完
 0