javascript – 如何在页面中使用React Router v1.0.0进行链接

我想链接到一个页面的特定部分与反应路由器很像锚标签在html中的工作方式.但是,我找不到React Router版本1.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>

最佳答案 目前 GitHub有一个未解决的问题.它似乎不受支持,但在修复此问题时使用HistoryLocation时应该支持它.

编辑

这是no longer supported.

点赞