这是我的app.js
import React from 'react'
import Quote from './components/Quote';
import './index.css'
import Abraham from './components/Abraham'
import {
BrowserRouter as Router,
Routes,
Route,
Link
} from "react-router-dom";
function App() {
return (
<>
<div>
<Quote />
<h2>List of authors</h2>
</div>
<Router>
<div>
<Link to="/">Author1</Link>
</div>
<Routes>
<Route exactpath="/" element={ <Abraham/>} />
</Routes>
</Router>
</>
)
}
export default App;
字符串
abraham.js
import React from 'react'
export default function Abraham() {
return (
<div>
<h1>My name is Abraham</h1>
</div>
)
}
型
当我点击作者1时,我想重定向到abraham,但没有发生。页面没有重定向。我使用React-Router-DOM将其链接到另一个页面,该页面是我导入的Abraham
。
2条答案
按热度按时间ki1q1bka1#
我想你在
exact path
之间漏掉了一个空格,exactpathprop应该写为exact*path,它们之间有一个空格。请参阅文档:https://v5.reactrouter.com/web/api/Route/exact-bool字符串
tvmytwxo2#
如果您希望
Abraham
路由和组件与Quote
组件、h2
元素和链接分开呈现,则应将后者放置在路由上,以便它们也根据URL路径有条件地呈现。React-Router v6中的
Route
组件没有exact
prop,应该删除它,因为所有路由现在都使用路由排名得分 * 始终 * 完全匹配。范例:
字符串