React Router从V2/V3到V4的变化

栏目: 服务器 · 发布时间: 5年前

内容简介:React Router v4几乎重写了v2/v3,相比于v3变化较大,包括Router/Route的改变,组件嵌套的方式,路由的生命周期,Swicth和Redirect等组件都改变较多,新版本的react router更偏向组件化,基本上与React的思想一致。在v3中,我们使用带history属性的在v4中,提供了几种不同的Router组件,每个Router组件都会创建一个

React Router v4几乎重写了v2/v3,相比于v3变化较大,包括Router/Route的改变,组件嵌套的方式,路由的生命周期,Swicth和Redirect等组件都改变较多,新版本的react router更偏向组件化,基本上与React的思想一致。

Router

在v3中,我们使用带history属性的 Router

// v3
import routes from './routes'
<Router history={browserHistory} routes={routes} />
// or
<Router history={browserHistory}>
  <Route path='/' component={App}>
    // ...
  </Route>
</Router>
复制代码

在v4中,提供了几种不同的Router组件,每个Router组件都会创建一个 history 对象。

//v4
<BrowserRouter>
  <div>
    <Route path="/about" component={About} />
    <Route path="/contact" component={Contact} />
  </div>
</BrowserRouter>
复制代码

在v3中Router组件里面可以渲染多个组件

// V2 or V3
import { Router, Route, hashHistory } from 'react-router';

<Router history={hashHistory}>
  <Route path='/about' component={About} />
  <Route path='/contact' component={Contact} />
</Router>
复制代码

而v4中,Router组件只能渲染一个组件

// yes
<BrowserRouter>
  <div>
    <Route path='/about' component={About} />
    <Route path='/contact' component={Contact} />
  </div>
</BrowserRouter>

// no
<BrowserRouter>
  <Route path='/about' component={About} />
  <Route path='/contact' component={Contact} />
</BrowserRouter>
复制代码

Routes

在v3中,并不是一个组件,所有的只是创建一个route配置对象

/// in v3 the element
<Route path='contact' component={Contact} />
// was equivalent to
{
  path: 'contact',
  component: Contact
}
复制代码

在v4中,组件就是一个真正的组件,当 path 与当前 location 匹配时,就会使用 rendering prop(component,render或者children) 来渲染;当 path 没有匹配到时,就会渲染null。

嵌套路由

在v3中,的嵌套通过将它们作为父的children

<Route path="parent" component={Parent}>
  <Route path="child" component={Child} />
  <Route path="other" component={Other} />
</Route>
复制代码

在v4中,只能被它的父组件渲染

<Route path="parent" component={Parent} />;

function Parent() {
  return (
    <div>
      <Route path="child" component={Child} />
      <Route path="other" component={Other} />
    </div>
  );
}
复制代码

路由的生命周期

V3提供了 onEnteronUpdateonLeaves 方法,在v4中我们需要用生命周期方法,用 componentDidMount 代替 onEnter ,用 componentDidupdate 代替 onUpdate ,用 componentWillUnmount 代替 onLeave

Switch

在v3中,我们可以指定多个子routes,只有第一个匹配的才会渲染

// v3
<Route path="/" component={App}>
  <IndexRoute component={Home} />
  <Route path="about" component={About} />
  <Route path="contact" component={Contact} />
</Route>
复制代码

v4提供了 组件,当一个组件被渲染时,只有匹配当前location的第一个child 才会被渲染。

// v4
const App = () => (
  <Switch>
    <Route exact path="/" component={Home} />
    <Route path="/about" component={About} />
    <Route path="/contact" component={Contact} />
  </Switch>
);
复制代码

Redirect

在v3中,如果我们需要进行路径的跳转,比如从 / 跳转到 /welcome ,就需要用到 IndexRedirect

// v3
<Route path="/" component={App}>
  <IndexRedirect to="/welcome" />
</Route>
复制代码

在V4中,我们可以使用 Redirect

// v4
<Route exact path="/" render={() => <Redirect to="/welcome" component={App} />} />

<Switch>
  <Route exact path="/" component={App} />
  <Route path="/login" component={Login} />
  <Redirect path="*" to="/" />
</Switch>
复制代码

在v3中, Redirect 保留了查询字符串

// v3

<Redirect from="/" to="/welcome" />
// /?source=google → /welcome?source=google
复制代码

在v4中,我们需要重新传递这些属性到 to属性上

// v4

<Redirect from="/" to="/welcome" />
// /?source=google → /welcome

<Redirect from="/" to={{ ...location, pathname: "/welcome" }} />
// /?source=google → /welcome?source=google
复制代码

其他变化

history.push和history.replace

/ V2 or V3
history.push({
    pathname: '/home',
    query: {
        foo: 'test',
bar: 'temp'
    }
});
history.replace({
    pathname: '/home',
    query: {
        foo: 'test',
bar: 'temp'
    }
});


// V4
history.push({
    pathname: '/home',
    search: '?foo=test&bar=temp',
});
history.replace({
    pathname: '/home',
    search: '?foo=test&bar=temp',
});

复制代码

可选参数

在v3中通过括号来表示可选 path="/entity/:entityId(/:parentId)"

在v4中通过一个尾随的问号来表示可选 path="/entity/:entityId/:parentId?"

props.params

// V2 or V3 获取params可以这么获取
this.props.params
复制代码
// V4
this.props.match.params
复制代码

location.query(查询字符串)

V4 去掉了 location.query ,只能使用 search 来获取,为了让其跟浏览器一样,如果想要兼容以前的 location.query ,可以使用 query-string 库解析一下

// V2 or V3 获取query可以这么获取
this.props.location.query
复制代码
// V4 去掉了location.query,只能使用search来获取,为了让其跟浏览器一样
// 如果想要兼容以前的location.query,可以使用query-string库解析一下
// 如: queryString.parse(props.location.search)
this.props.location.search
复制代码

location.action

// V2 or V3 获取location的action
this.props.location.action
复制代码
// V4 去掉了location.action, 放在了history里面
history.action
复制代码

获取history库

//以前获取react-router里面的history库,可以这么获取:

import {hashHistory as history} from 'react-router';
复制代码
//V4

import createHashHistory as history from 'history/createHashHistory';
复制代码

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

乌合之众

乌合之众

(法)勒庞 / 冯克利 / 中央编译出版社 / 2011-5-1 / 16.00元

古斯塔夫・勒庞 Gustave Le Bon(1841-1931) 法国著名社会心理学家。他自1894年始,写下一系列社会心理学著作,以本书最为著名;在社会心理学领域已有的著作中,最有影响的,也是这本并不很厚的《乌合之众》。古斯塔夫・勒庞在他在书中极为精致地描述了集体心态,对人们理解集体行为的作用以及对社会心理学的思考发挥了巨大影响。《乌合之众--大众心理研究》在西方已印至第29版,其观点新颖,语......一起来看看 《乌合之众》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具