我有一个简单的反应路由器设置。请在这里查看我的代码 -
https://github.com/rocky-jaiswal/lehrer-node/tree/master/frontend
这是react-router最基本的设置,但是在浏览器中我无法正常工作 -
import React from 'react';
import ReactDOM from 'react-dom';
import { Router, Route } from 'react-router';
import IndexContainer from './components/index-container';
import AboutContainer from './components/about-container';
import PagesContainer from './components/pages-container';
(function main() {
ReactDOM.render((
<Router>
<Route path="/" component={IndexContainer}>
<Route path="about" component={AboutContainer} />
<Route path="pages" component={PagesContainer} />
</Route>
</Router>),
document.getElementById('app')
);
})();
问题还在于控制台上没有报告错误。即使我更改了URL,也始终会挂载 IndexComponent 。此外,如果我输入http://localhost:3333/#/about,它会以某种方式更改为http://localhost:3333/#/about?_k=bac2pt并保留在IndexComponent上。
我的简单webpack配置或react / react-router版本会出现问题吗?
谢谢, 落基
答案 0 :(得分:1)
IndexContainer
是您的父组件,请尝试在{ this.props.children }
中添加render()
,以便显示AboutContainer
和PagesContainer
。