欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解升级react-router 4 踩坑指南

程序员文章站 2023-02-24 08:26:20
一.前言 上午把近日用react做的一个新闻项目所依赖的包升级到了最新的版本,其中从react-router(2.8.1)升级到react-router(4.1.2)中出...

一.前言

上午把近日用react做的一个新闻项目所依赖的包升级到了最新的版本,其中从react-router(2.8.1)升级到react-router(4.1.2)中出现了很多问题, 故总结一下在升级过程中遇到的问题.

二.react-router,v4版本修改内容

1. 所有组件更改为从react-router-dom导入

之前的所有路由组件均是从react-router中导入,在我之前的项目中,导入相关组件如下:

//v2
import {router,route,hashhistory} from 'react-router';

在react-router4 开始,所有的router组件均是从react-router-dom中导入, 所以一下的需要更改为以下代码:

//v4
import {route,browserrouter, switch} from 'react-router-dom';

细心的你发现在,到导入的过程中,我删除了router,但是增加了borwerrouter和switch,下面我会一步步的说明.

2. 将所有<router>替换为<browserrouter>

之前v2中的代码如下:

//v2
 <router history={hashhistory}>
  <route path="/" component={pcindex}></route>
  <route path="/details/:uniqueky" component={pcnewsdetails}></route>
  <route path="/usercenter" component={pcusercenter}></route>
 </router>

现在需要更改为browserrouter

//v4
<browserrouter>
  <switch>
   <route exact path="/" component={mobileindex}></route>
   <route path="/details/:uniqueky" component={mobilenewsdetails}></route>
   <route path="/usercenter" component={mobileusercenter}></route>
  </switch>
 </browserrouter>

细心的你发现,这里的代码不仅仅是将router替换为browserrouter,而且还把所有的route中用switch包裹起来. 下面就是v4的另一个修改.

3. <browserrouter>只能有一个子节点

<broserrouter>只能有一个子节点,所以官网建议的是使用<switch>进行包裹,官网给出的例子如下.

in v3, you could specify a number of child routes, and only the first one that matched would be rendered.

// v3
<route path='/' component={app}>
 <indexroute component={home} />
 <route path='about' component={about} />
 <route path='contact' component={contact} />
</route>

v4 provides a similar functionality with the <switch> component. when a <switch> is rendered, it will only render the first child <route> that matches the current location.

// v4
const app = () => (
 <switch>
  <route exact path='/' component={home} />
  <route path='/about' component={about} />
  <route path='/contact' component={contact} />
 </switch>
)

4. 最坑的地方:在当前目录下的文件路径不再使用./, 而是直接用/.

在进行文件引用的时候 ,./src/js的写法需要更改文'/src/js', 这是更改之后最坑的地方!!! 因为其他的更改,在控制台都会有着详细的错误提示, 然而找不到文件只会出现404!!!
所以,在单页面中的引入的css文件和bundle.js的引入都需要更改, 在我的项目中的例子如下:

//v2
<!doctype html>
<html lang="en">
  <head>
    <title></title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="./src/css/pc.css" rel="external nofollow" >
    <link rel="stylesheet" href="./src/css/mobile.css" rel="external nofollow" >
  </head>
  <body>
    <div id="maincontainer">
      
    </div>
    <script src="./src/bundle.js"></script>
  </body>
</html>

上面的页面需要更改为下面这样,否则所有的文件都无法找到:

//v4
<!doctype html>
<html lang="en">
  <head>
    <title></title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="/src/css/pc.css" rel="external nofollow" >
    <link rel="stylesheet" href="/src/css/mobile.css" rel="external nofollow" >
  </head>
  <body>
    <div id="maincontainer">
      
    </div>
    <script src="/src/bundle.js"></script>
  </body>
</html>

三.更多信息

以上就是我在我的项目中所遇到的坑,以及对应的处理办法.总的来说react-router4 rewrite之后变化还是挺大的.

1. 更多react-router v4的修改信息,请看github:

migrating from v2/v3 to v4

2. 本文中的项目下载地址:

github: https://github.com/lee-tanghui/react-news-project.git

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。