我已經開發了一個頁面,反應,其途徑是如何添加斜線反應路由器路徑
http://example.come/page1
當URL被加載,我需要在URL這樣
年底追加一個斜槓http://example.come/page1/
我的路線是這樣的
Router history={browserHistory}>
<Route path='/' component={Home} />
<Route path='/page1' component={Page1} />
</Router>
我試圖改變路徑,直接到「/第1頁/」而不是「/第1頁」,但是這將不會加載http://example.com/page1
,這將打開只http://example.com/page1/
我想這兩個路徑來加載第1頁組件
路徑中的用戶正則表達式 –
正則表達式如何改變路徑?我將匹配路徑並加載頁面 – John
使用鉤子(onEnter和onChange)? https://github.com/ReactTraining/react-router/issues/820#issuecomment-256814655 –