首先使用npm安裝模塊
npm i react-router-dom
哪里需要就在哪里引用
ex>
import React from 'react';
import { HashRouter as Router, Route, Switch } from 'react-router-dom';
function App() {
return (
<div className="App">
<Router>
{/* exact表示絕對(duì)匹配 */}
{/* 在react-router中每一個(gè)Route相當(dāng)于一個(gè)組件 */}
{/* 在傳遞參數(shù)的時(shí)候可以設(shè)置成 :參數(shù)名? 表示可選參數(shù) */}
{/* Switch表示只匹配一個(gè)符合條件的路由 */}
<Switch>
<Route path="/" exact component={()=><h1>首頁</h1>} />
<Route path="/hot/:tag" component={()=><h1>熱賣</h1>} />
<Route path="/hot_show" component={()=><h1>熱映 </h1>} />
<Route path="/about" component={()=><h1>關(guān)于我們</h1>} />
<Route path="/detail/:id" component={()=><h1>詳情頁</h1>} />
<Route component={() => <h1>頁面沒找到</h1>} />
</Switch>
</Router>
</div>
);
}
export default App;