4
我想鏈接到頁面的具體部分與反應路由器很多像錨定標籤如何在HTML中工作。但是,我找不到React Router版本1.0.0的解決方案。如何鏈接到一個頁面與反應路由器v1.0.0
目前,我有我的路由器是這樣的:
let history = createHashHistory({
queryKey: false
});
<Router history={history}>
<Route path="/" component={a}/>
<Route path="/b" component={b}/>
<Route path="/c" component={c}/>
<Route path="/d" component={d}/>
<Route path="/e" component={e}/>
<Route path="/f" component={f}/>
<Route path="/g" component={g}/>
</Router>
,我試圖鏈接到一個特定部分的組件,如
<Link to="/b#{div_id}"> Go to section with div_id is component {b} </Link>
查看我的更新,這不會被支持 – Tyrsius
有什麼辦法可以用React去頁面的某個部分呢? –
看看[這個答案](http://stackoverflow.com/questions/30495062/how-can-i-scroll-a-div-to-be-visible-in-reactjs) – Tyrsius