react-router 路由配置总是报错?
Warning: [react-router] Location "/Web/web/react/router/router-index.html" did not match any routes 这是浏览器错误描述
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Warning: [react-router] Location "/Web/web/react/router/router-index.html" did not match any routes 这是浏览器错误描述
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
你设置的是 browserHistory,并且路由的根路径为
/
, 所以你的路由是这样匹配的:htt://你的域名:/路由
, 所以/Web/web/react/router/router-index.html
这个当然匹配不到呀楼主有真的了解清楚react-router吗?根据你的路由配置,只能匹配到 http://你的域名/about、http://你的域名/concat、http://你的域名/list/:id这几种格式的地址,/Web/web/react/router/router-index.html这个地址完全不满足这几种格式,所以匹配不上,导致报错。
不要使用
browserHistory
,应该使用hashHistory