【前言】
最近壓力大、天氣變換大,我的皮膚又開始作怪了(暈,剩下最後七篇了!
【正文】
昨天介紹四種Router標籤,今天來介紹**Route**
。
Route
:用來匹配路由的組件Route
:會根據目前網址做比對,render匹配的componenttrue
的話,代表url path要跟location.pathname完全相符合true
的話,代表匹配的location.pathname也要有結尾的斜線才能符合true
,網址大小寫會導致匹配結果// 如果同時設定exact、strict,可以讓location.pathname沒有結尾斜線
<Route exact strict path="/one" component={About} />
<Route path="/user/:username" component={User} />
<Route path="/home" render={() => <div>Home</div>}/>