所以在此配置使用之前使用react-router。但现在我收到一条错误消息说;但是我看到你需要使用,但是如何在ReactDom.render( < div >
<Router history = {hashHistory}routes = {routes} > < /Router> </div>,
document.getElementById('react-app'));
内呈现路由配置?
routes.map不是函数
请有人帮助我。
const routes = {
component: Base,
childRoutes: [{
path: '/home',
getComponent: (location, callback) => {
if (Auth.isUserAuthenticated()) {
callback(null, Home);
} else {
callback(null, HomePage);
}
}
},
{
path: '/login',
component: LoginPage
},
]
}