React路由v6中类组件实现编程式导航

1、使用高阶组件添加props

import { Route, Routes, useNavigate } from "react-router-dom";


export const withNavigation = (Component) => {
  return (props) => <Component {...props} navigate={useNavigate()} />;
};

class Home extends Component {
  state = {
    activeKey: "/index",
    tabs: [
      {
        key: "/index",
        title: "首页",
        icon: <AppOutline />,
      },
      {
        key: "/list",
        title: "找房",
        icon: <UnorderedListOutline />,
      },
      {
        key: "/news",
        title: "咨询",
        icon: <MessageOutline />,
      },
      {
        key: "/profile",
        title: "我的",
        icon: <UserOutline />,
      },
    ],
  };
  setActiveKey = (e) => {
    let path = "/home" + e;
    this.setState({
      activeKey: e,
    });
    //跳转  不能用this.props.history.push()报错
    this.props.navigate(path);
  };

  setActiveKey(params) {}
  render() {
    return (
      <div className="homeCss">
          {/* 路由规则 */}
        <Routes>
          <Route path="/*" element={<Index />}></Route>
          <Route path="/home/news" element={<News />}></Route>
          <Route path="/home/list" element={<HouseList />}></Route>
          <Route path="/home/profile" element={<Profile />}></Route>
        </Routes>
        {/* 路由规则 */}
        <div className="tabbar">
          <TabBar activeKey={this.state.activeKey} onChange={this.setActiveKey}>
            {this.state.tabs.map((item) => (
              <TabBar.Item key={item.key} icon={item.icon} title={item.title} />
            ))}
          </TabBar>
        </div>
      </div>
    );
  }
}
//使用 withNavigation包裹类组件名称
export default withNavigation(Home);

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值