react-router v1.0.0无法到达路由

时间:2015-11-22 19:06:39

标签: react-router

我一直在与react-router合作开展一个项目工作,由于某种原因它无法到达IndexRoute以外的路线。尝试访问/profile路由时,会在浏览器中返回此信息:

Response In Browser

我正在尝试使用react-router进行客户端路由。

继承我的路线代码:

let history = createBrowserHistory();

render((
    <Router history={history} >
        <Route path="/" component={App}>
            <IndexRoute component={Landing}/>
            <Route path="profile" component={UserProfile}/>
         </Route>
    </Router>
), document.getElementById('app'));

我认为它可能是UserProfile组件,但当我将其插入IndexRoute时,它会正确呈现。控制台中没有出现任何错误,我希望这个问题很明显,我忽略了,欢迎提供任何帮助。

0 个答案:

没有答案