
react-router
newBunny
这个作者很懒,什么都没留下…
展开
-
react-router IndexRoute废弃
react-router v4+版本 IndexRoute已经去掉了,但也有替换的属性 我们用 v3 和 v4 各写一个简单的两页应用来对比它们二者 ,下面例子中的两个路由分别指代 home 页 和 user 页: 以下是 v3 版本: import { Router, Route, IndexRoute } from 'react-router' const PrimaryLa...转载 2019-05-22 16:56:36 · 3396 阅读 · 0 评论 -
react-router v4.0+ 的 withRouter
首先,我们先来说说withRouter是做什么的,它主要是使非路由直连组件可以直接获取到路由的props(history、location、match等等) import React, { Component } from 'react'; import { withRouter } from 'react-router-dom'; import { RouteCompon...原创 2019-06-06 18:13:21 · 875 阅读 · 0 评论 -
react-router v4.0+ 找不到的路由怎么handle
<Switch> <Route path="/" exact component={Download}/> <Route path="/download" component={Downloads}/> <Route component...原创 2019-06-04 10:00:07 · 421 阅读 · 0 评论