taro跳转到tabBar报错问题

2023年6月23日10:05:50

{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",
        });
      }

  • 作者:waillyer
  • 原文链接:https://blog.csdn.net/waillyer/article/details/117407107
    更新时间:2023年6月23日10:05:50 ,共 268 字。