关于你提到的错误信息 "switch' (imported as 'switch') was not found in 'react-router-dom'",这通常意味着你尝试从 react-router-dom 导入一个不存在的 switch 组件。下面是一些可能的解决方案和检查点: 检查是否已正确安装了react-router-dom库: 确保你已经通过npm或yarn正确安装了react-router-dom库。你...
报如下错,查react-router-dom版本。 因为:react-router-dom从V5升级到V6造成的 (1) 将Switch 重命名为 Routes (2) Route 的新特性变更 ,component/render被element替代 (3)嵌套路由变得更简单
将react-router-dom 版本降级到 5 或以下 1. 使用 <Routes> 而不是 <Switch> 修复“‘Switch’ is not exported from ‘react-router-dom'” 错误的一种方法是将<Switch>替换为<Routes>。 让我们来看一个示例,看看如何将路由代码从 React Router 版本 5 中已废弃的<Switch>组件更新为 React Router 版本 ...
解决方案: 将react-router版本降到5即可
import{BrowserRouterasRouter,Route,Switch}from'react-router-dom'; 1. 原因:安装了6.x版本的react-router-dom,在新版本的代码中,已经将 Switch改为Routes Redirect 改为Navigate ...
在package.json 文件中添加了 react-router-dom 依赖项。由 BrowswerRouter 包装的应用程序组件,但是当我通过 switch 包装路由时,它说以下错误 Switch’ is notexported from ‘react-router-dom&rs...
踩坑记录:react-router-dom 从 v6.x 版本开始,移除了Switch,需要做以下变更: 之前:import { Switch, Route } from "...
export 'Switch' (imported as 'Switch') was not found in 'react-router-dom' (possible exports: BrowserRouter, HashRouter, Link, MemoryRouter, NavLink, Navigate, Outlet, Route, Router, Routes, UNSAFE_LocationContext, UNSAFE_NavigationContext, UNSAFE_RouteContext, createRoutesFromChildren, createSearc...
import { Switch, Route } from "react-router-dom";改为:import { Routes ,Route } from 'react-router-dom';之前:<Route path="/" component={Home} /> 改为:<Route path='/' element={<Home/>} /> 其他:移除 exact 此后不需要在路由中进行声明!更多修改请访问官方文档 https:...
我只好顺着错误去看看react-router-config的源码,这里发现react-router-config使用的竟然还是react-router v5的Switch,我当时就无语了,哥们时代变了你不知道吗,我的react-router-dom是^6,所以才产生了报错。 把router版本改成v5即可 不了解v6的小伙伴可以自行查阅下官网React Router | Docs Home...