为了账号安全,请及时绑定邮箱和手机立即绑定

请教react路由写法的问题?

请教react路由写法的问题?

收到一只叮咚 2018-10-11 13:14:08
webpack中,按照文档的写法路由不跳转,下面是我的代码:const App = () => {  return (    <div>       <Link to="/Login">Login</Link>     </div>   ) }const routes = {  path: '/',  component: App,  chidRoutes: [     {path:'Login', component: 'Login'}   ] } ReactDOM.render(<Router routes={routes} history={hashHistory} />, document.getElementById('root')) 地址栏输入无效,点击链接报错截图:
查看完整描述

1 回答

?
慕桂英3389331

TA贡献2036条经验 获得超8个赞

chidRoutes: [

    {path:'Login', component: 'Login'}//这个Login没看到你这路径引入呀

  ]

这样试试呢?

chidRoutes: [

    {path:'/Login',component:require('../login.jsx').default}

]


查看完整回答
反对 回复 2018-11-11
  • 1 回答
  • 0 关注
  • 433 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信