未使用HashRouter加载Home组件的内容

时间:2019-07-29 19:28:10

标签: reactjs react-router

默认网站加载期间正在加载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)所需内容

0 个答案:

没有答案