antdpro / antdp

一个基于 antd 和 umi 的初始级别项目,集成路由、dva(Redux)、选项卡等特性,用于简化 antd 5.x + 的部分使用。
https://antdpro.github.io/antdp
MIT License
19 stars 18 forks source link

antdp不支持动态路由 #268

Closed ChenlingasMx closed 1 year ago

ChenlingasMx commented 1 year ago

image

路由配置如下

      {
            "path":"/order/orderDetail/:id",
            "name": "订单详情",
            "component": "@/pages/order/orderDetail/$detail.jsx",
            "hideInMenu": true
       }

跳转代码如下

 history.push(`/order/orderDetail/${12}`);

结果:404页面不存在。用umi创建的项目不会出现这个问题

xingyuefeng commented 1 year ago

已支持