默认网站加载期间正在加载home组件中的内容... 要加载它,需要手动从导航菜单中单击“主页”超链接。 这是Index.js中的代码
ReactDOM.render(
<HashRouter basename={baseUrl}>
<App />
</HashRouter>,
rootElement);
App.js具有以下代码
render() {
return (
<Layout>
<Route exact path='/index.html' component={Home} />
<Route path='/report' component={Report} />
</Layout>
);
}
Home组件仅包含一些与网站相关的内容,因此,当我尝试使用http://localhost:3000/#/加载我的网站时... ...它不显示Home组件的任何内容,但是当我单击“ Home”的超链接时'从左侧导航中,它从首页组件加载(http://localhost:3000/#/index.html)所需内容