我一直在与react-router
合作开展一个项目工作,由于某种原因它无法到达IndexRoute
以外的路线。尝试访问/profile
路由时,会在浏览器中返回此信息:
我正在尝试使用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
时,它会正确呈现。控制台中没有出现任何错误,我希望这个问题很明显,我忽略了,欢迎提供任何帮助。