React中为什么接收不到url中的参数?

2020-02-19 10:35:38
有同学问为什么接收不到参数,大家看明白了吗? 图1 ![1.png](https://static.daimaku.net/post/202002/19/12e3546ea439960e83d1c4816320e5d7.png) 图2 ![2.png](https://static.daimaku.net/post/202002/19/b6fd1fba802605834afc15518acfdd0c.png) 图3 ![3.png](https://static.daimaku.net/post/202002/19/e6c76e9be4f55abfa189b763bee60e91.png) 原因在于路由定义时,没有写:id参数,图3修改成如下代码即可 ```react <Route path="/article/edit/:id" component={Edit}></Route> ```